From f0648d17b1dd96a043a75c2770f3fe8de460b8ce Mon Sep 17 00:00:00 2001 From: Curtis F Kaylor Date: Tue, 13 Feb 2018 19:53:45 -0500 Subject: [PATCH] Fixed type in block.h02. modified clean02.bat --- .gitignore | 4 ++++ clean02.bat | 2 +- include/block.h02 | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c10486d..e15802e 100644 --- a/.gitignore +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/clean02.bat b/clean02.bat index 30c53f4..ae690ef 100644 --- a/clean02.bat +++ b/clean02.bat @@ -1,5 +1,5 @@ @REM Clean Up Extraneous Files from c02 compile and assembly +del *.dbg del *.log del *.lst del *.sym -del *.out diff --git a/include/block.h02 b/include/block.h02 index 59d1e98..cb984c5 100644 --- a/include/block.h02 +++ b/include/block.h02 @@ -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();