1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2026-04-21 17:16:28 +00:00

Fixed type in block.h02. modified clean02.bat

This commit is contained in:
Curtis F Kaylor
2018-02-13 19:53:45 -05:00
parent 80b160ae75
commit f0648d17b1
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -8,6 +8,7 @@
#Files created when compiling a C02 program
*/*.asm
*/*.bin
*/*.dbg
*/*.log
*/*.lst
*/*.prg
@@ -19,3 +20,6 @@
*.s9
*.wav
#Deprecated Files
*/oldclude
*/*.zip
+1 -1
View File
@@ -1,5 +1,5 @@
@REM Clean Up Extraneous Files from c02 compile and assembly
del *.dbg
del *.log
del *.lst
del *.sym
del *.out
+1 -1
View File
@@ -16,7 +16,7 @@ void blkend();
/* Read Bytes from Block *
* Args: n - Number of bytes to read *
* &m - Array containing bytes to read *
* Returns: A=$FF if bytes were written *
* Returns: A=$FF if bytes were read *
* $00 if block was overflowed */
char blkget();