changeset 830:80e125a9357d

One more try to fix variable name collision
author boisy
date Tue, 14 Jan 2003 03:08:40 +0000
parents a114971abd3b
children 27f21cba6b30
files level1/cmds/deiniz.asm level1/cmds/iniz.asm
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/level1/cmds/deiniz.asm	Tue Jan 14 03:06:30 2003 +0000
+++ b/level1/cmds/deiniz.asm	Tue Jan 14 03:08:40 2003 +0000
@@ -27,7 +27,7 @@
          mod   eom,name,tylg,atrv,start,size
 
          org   0
-readbuf  rmb   linebsiz+1
+rbuffer  rmb   linebsiz+1
 stack    rmb   64
 size     equ   .
 
@@ -55,7 +55,7 @@
          bra   DenizDev
 
 ReadnDnz clra			from stdin
-         leax  readbuf,u	point to read buffer
+         leax  rbuffer,u	point to read buffer
          ldy   #linebsiz	get linebsiz bytes
          os9   I$ReadLn 	read it!
          bcc   DenizDev		branch if error
--- a/level1/cmds/iniz.asm	Tue Jan 14 03:06:30 2003 +0000
+++ b/level1/cmds/iniz.asm	Tue Jan 14 03:08:40 2003 +0000
@@ -22,12 +22,12 @@
 rev      set   $01
 edition  set   4
 
-linebsiz equ   80
+lsize    equ   80
 
          mod   eom,name,tylg,atrv,start,size
 
          org   0
-readbuf  rmb   linebsiz+1
+rbuffer  rmb   lsize+1
 stack    rmb   64
 size     equ   .
 
@@ -51,8 +51,8 @@
          bra   InizDev
 
 ReadnInz clra			from stdin
-         leax  readbuf,u	point to read buffer
-         ldy   #linebsiz	get linebsiz bytes
+         leax  rbuffer,u	point to read buffer
+         ldy   #lsize	        get lsize bytes
          os9   I$ReadLn 	read it!
          bcc   InizDev		branch if error
          cmpb  #E$EOF		end of file?