renamed fd_table, fd_index to __fd_table and __fd_index (C naming)

git-svn-id: svn://svn.cc65.org/cc65/trunk@122 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg
2000-06-25 01:40:29 +00:00
parent 9468b05231
commit 695f260449
2 changed files with 9 additions and 9 deletions

View File

@@ -14,15 +14,15 @@
.export newfd
.export getfd
.export _fd_table,_fd_index ; for test purposes
.export ___fd_table,___fd_index ; for test(debug purposes only
.data
MAX_FD_INDEX = 12
_fd_index:
___fd_index:
fd_index: ; fd number is index into this table, entry's value specifies the fd_table entry
.res MAX_FD_INDEX,$ff
_fd_table:
___fd_table:
fd_table: ; each entry represents an open iocb
.byte 0,0,'E',0 ; system console, app starts with opened iocb #0 for E:
.byte 0,$ff,0,0