From 0919e1702d9682f6293cf4fea06cac58461ed49d Mon Sep 17 00:00:00 2001 From: Terence Boldt Date: Thu, 1 Apr 2021 08:34:13 -0400 Subject: [PATCH] Remove unused RPi.Command references --- Apple2/CommandFirmware.asm | 6 ------ Apple2/CommandFirmware.lst | 8 +------- Apple2/assemble.sh | 3 --- 3 files changed, 1 insertion(+), 16 deletions(-) diff --git a/Apple2/CommandFirmware.asm b/Apple2/CommandFirmware.asm index 64c6bbe..b45acb4 100644 --- a/Apple2/CommandFirmware.asm +++ b/Apple2/CommandFirmware.asm @@ -130,9 +130,3 @@ end: .byte 0,0 ;0000 blocks = check status .byte 7 ;bit set(0=status 1=read 2=write) unset(3=format, 4/5=number of volumes, 6=interruptable, 7=removable) .byte DriverEntry&$00FF ;low byte of entry - -;Translation of code written in mini-assembler on Apple //e -;Currently only works if card is in slot 5 - - .org $1000 - diff --git a/Apple2/CommandFirmware.lst b/Apple2/CommandFirmware.lst index a3e557a..ab06603 100644 --- a/Apple2/CommandFirmware.lst +++ b/Apple2/CommandFirmware.lst @@ -136,10 +136,4 @@ Current file: CommandFirmware.asm 00C5FC 1 00 00 .byte 0,0 ;0000 blocks = check status 00C5FE 1 07 .byte 7 ;bit set(0=status 1=read 2=write) unset(3=format, 4/5=number of volumes, 6=interruptable, 7=removable) 00C5FF 1 14 .byte DriverEntry&$00FF ;low byte of entry -00C600 1 -00C600 1 ;Translation of code written in mini-assembler on Apple //e -00C600 1 ;Currently only works if card is in slot 5 -00C600 1 -00C600 1 .org $1000 -001000 1 -001000 1 +00C5FF 1 diff --git a/Apple2/assemble.sh b/Apple2/assemble.sh index 48e8715..b0c6bbc 100755 --- a/Apple2/assemble.sh +++ b/Apple2/assemble.sh @@ -49,9 +49,6 @@ cat \ DriveFirmware.bin CommandFirmware.bin FileAccessFirmware.bin MenuFirmware.bin \ > Firmware_AT28C64B_EEPROM.bin -ca65 Rpi.Command.asm -o Rpi.Command.o -ld65 Rpi.Command.o -o Rpi.Command.bin -t none - rm *.o rm DriveFirmware.bin rm MenuFirmware.bin