diff --git a/e1.s b/e1.s deleted file mode 100644 index f6466f0..0000000 --- a/e1.s +++ /dev/null @@ -1,15 +0,0 @@ - - rel - dsk framebuffer.l - - ext waitkey - ; We could have a putbin here, to display a raw image -fbuffer ent - clc - xce - rep #$30 - jsl waitkey - rtl - db 1 - - diff --git a/link.s b/link.s deleted file mode 100644 index c4dd193..0000000 --- a/link.s +++ /dev/null @@ -1,26 +0,0 @@ - - - dsk e1.obj ; program name - typ $b1 ; OBJ - ;xpl ; Add Expressload - - -; Segment 1 - - asm e1.s ; Really want to attempt a putbin - ds $8000 - knd #$1100 ; Kind - ali None ; alignment -; lna e1demo.s16 ; Load Name - sna framebuffer ; Segment Name - -; Segment 2 - - asm waitkey.s - ds 0 - knd #$1100 - ali none -; lna e1demo.s16 - sna keything - - diff --git a/patch.bat b/patch.bat deleted file mode 100644 index 8350653..0000000 --- a/patch.bat +++ /dev/null @@ -1,10 +0,0 @@ -rem -rem $ printf '\x31\xc0\xc3' | dd of=test_blob bs=1 seek=100 count=3 conv=notrunc -rem dd arguments: -rem -rem of | file to patch -rem bs | 1 byte at a time please -rem seek | go to position 100 (decimal) -rem conv=notrunc | don't truncate the output after the edit (which dd does by default) - - diff --git a/waitkey.s b/waitkey.s deleted file mode 100644 index 6108818..0000000 --- a/waitkey.s +++ /dev/null @@ -1,31 +0,0 @@ - rel - dsk Main.l - -; ext fbuffer - -waitkey ent - clc - xce - sep #$30 - - ; Enable SHR - - ldal $e0c029 - ora #$c0 - stal $e0c029 - - ; Wait Key -:lp - ldal $e0c000 - bpl :lp - stal $e0c010 - - ; Exit the App - - ; TODO call Prodos 16 Exit - ; as rtl probably just crashes - - rtl - -; da fbuffer -