From f6d1607a33e8b4dd43b78d6159f34e0874e1dfe4 Mon Sep 17 00:00:00 2001 From: Terence Boldt Date: Mon, 28 Dec 2020 10:54:57 -0500 Subject: [PATCH] Update project status --- Apple2/test.asm | 11 ----------- Apple2/test_assemble.sh | 3 --- README.md | 4 ++-- 3 files changed, 2 insertions(+), 16 deletions(-) delete mode 100644 Apple2/test.asm delete mode 100755 Apple2/test_assemble.sh diff --git a/Apple2/test.asm b/Apple2/test.asm deleted file mode 100644 index f90a23e..0000000 --- a/Apple2/test.asm +++ /dev/null @@ -1,11 +0,0 @@ - ldx #$50 ;slot 5 for this test -start: lda #$80 ;set read flag low (ready to read) - sta $c08d,x ;bit 1 low for writing values -waitwl: lda $c08e,x ;bit 0 low for reading values - bmi waitwl ;wait for write flag low - jsr $fde3 ;print nibble of data - lda #$c0 ;set read flag high (done reading) - sta $c08d,x -waitwh: lda $c08e,x - bpl waitwh ;wait for write flag high - bmi start ;go around againg for next nibble diff --git a/Apple2/test_assemble.sh b/Apple2/test_assemble.sh deleted file mode 100755 index 8b1c025..0000000 --- a/Apple2/test_assemble.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -ca65 test.asm -ld65 test.o -o test.bin -t none diff --git a/README.md b/README.md index 02ad737..0b93c07 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ This is an early stage project. Currently one board has been assembled and teste 1. DONE - Build initial prototype that reads/writes virtual hard drive 2. DONE - Create firmware to make the card a bootable device 3. DONE - Fix board with updated second prototype PCB -4. DONE - Add ProDOS clock driver -5. Add RPi terminal access +4. WORKING - Add ProDOS clock driver (real driver later, for now just directly sets values) +5. WORKING - Add RPi terminal access (does not keep context between commands yet) 6. Add web service call support 7. Proxy VNC connection, rendering as Apple II compatible graphics 8. Create new schematic/PCB with faster data transfer