Rename to match original

This commit is contained in:
Joshua Bell 2019-06-17 20:45:00 -07:00
parent 9d424a4e01
commit 6edbfa48ac
6 changed files with 13 additions and 4 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Build directory
out
# Directory mounted in Virtual ][ as a ProDOS volume
mount
# OS-specific files
.DS_Store

View File

@ -7,7 +7,7 @@ OUTDIR = out
HEADERS = $(wildcard inc/*.inc) HEADERS = $(wildcard inc/*.inc)
TARGETS = $(OUTDIR)/ram.system.SYS TARGETS = $(OUTDIR)/ram.drv.system.SYS
.PHONY: clean all .PHONY: clean all
all: $(OUTDIR) $(TARGETS) all: $(OUTDIR) $(TARGETS)

View File

@ -1,6 +1,7 @@
# Disassembly of Glen E. Bredon's `RAM.DRV.SYSTEM` for the Apple II # Disassembly of Glen E. Bredon's `RAM.DRV.SYSTEM` for the Apple II
This was started before realizing what the origin of the `RAM.SYSTEM` file was. This was started before realizing what the origin of the `RAM.SYSTEM`
found on a MouseDesk 2.0 disk image file was.
There is a more complete diassembly with commentary at: There is a more complete diassembly with commentary at:

BIN
orig/RAM.SYSTEM.SYS Normal file

Binary file not shown.

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# Run this from the ram.system directory # Run this from the ram.drv.system directory
set -e set -e
source "res/util.sh" source "res/util.sh"
@ -15,4 +15,4 @@ function verify {
#do_make clean #do_make clean
do_make all do_make all
verify "RAM.SYSTEM.SYS" "ram.system.SYS" verify "RAM.SYSTEM.SYS" "ram.drv.system.SYS"