Fix broken recipes

This commit is contained in:
Virgil Dupras 2020-02-26 21:44:37 -05:00
parent 92ddc7ebc1
commit 64a54c72f8
4 changed files with 13 additions and 4 deletions

View File

@ -21,6 +21,7 @@
jp fsOpen jp fsOpen
jp fsGetB jp fsGetB
jp printstr jp printstr
jp printcrlf
jp _blkGetB jp _blkGetB
jp _blkPutB jp _blkPutB
jp _blkSeek jp _blkSeek
@ -28,12 +29,15 @@
jp sdcGetB jp sdcGetB
jp sdcPutB jp sdcPutB
jp blkGetB jp blkGetB
jp stdioPutC
; interrupt hook ; interrupt hook
.fill 0x38-$ .fill 0x38-$
jp aciaInt jp aciaInt
; *** cont. ***
jp stdioPutC
.inc "err.h" .inc "err.h"
.inc "ascii.h" .inc "ascii.h"
.inc "blkdev.h" .inc "blkdev.h"

View File

@ -10,6 +10,7 @@
.equ fsOpen @+3 .equ fsOpen @+3
.equ fsGetB @+3 .equ fsGetB @+3
.equ printstr @+3 .equ printstr @+3
.equ printcrlf @+3
.equ _blkGetB @+3 .equ _blkGetB @+3
.equ _blkPutB @+3 .equ _blkPutB @+3
.equ _blkSeek @+3 .equ _blkSeek @+3
@ -17,4 +18,6 @@
.equ sdcGetB @+3 .equ sdcGetB @+3
.equ sdcPutB @+3 .equ sdcPutB @+3
.equ blkGetB @+3 .equ blkGetB @+3
.equ stdioPutC @+3
; *** cont. ***
.equ stdioPutC 0x3b

View File

@ -23,10 +23,11 @@
.equ GRID_COLS VDP_COLS .equ GRID_COLS VDP_COLS
.equ GRID_ROWS VDP_ROWS .equ GRID_ROWS VDP_ROWS
.equ GRID_SETCELL vdpSetCell .equ GRID_SETCELL vdpSetCell
.equ GRID_GETC kbdGetC
.inc "grid.asm" .inc "grid.asm"
.equ STDIO_RAMSTART GRID_RAMEND .equ STDIO_RAMSTART GRID_RAMEND
.equ STDIO_GETC kbdGetC .equ STDIO_GETC gridGetC
.equ STDIO_PUTC gridPutC .equ STDIO_PUTC gridPutC
.inc "stdio.asm" .inc "stdio.asm"

View File

@ -52,10 +52,11 @@
.equ GRID_COLS VDP_COLS .equ GRID_COLS VDP_COLS
.equ GRID_ROWS VDP_ROWS .equ GRID_ROWS VDP_ROWS
.equ GRID_SETCELL vdpSetCell .equ GRID_SETCELL vdpSetCell
.equ GRID_GETC kbdGetC
.inc "grid.asm" .inc "grid.asm"
.equ STDIO_RAMSTART GRID_RAMEND .equ STDIO_RAMSTART GRID_RAMEND
.equ STDIO_GETC kbdGetC .equ STDIO_GETC gridGetC
.equ STDIO_PUTC gridPutC .equ STDIO_PUTC gridPutC
.inc "stdio.asm" .inc "stdio.asm"