mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-25 05:29:34 +00:00
fix some more miscompiles
This commit is contained in:
parent
5f8558ab12
commit
a7c8b6646b
@ -1,7 +1,7 @@
|
||||
#include ../Makefile.inc
|
||||
|
||||
B2D = ../../bmp2dhr/b2d
|
||||
PNG2GR = ../../gr-utils/png2gr
|
||||
B2D = ../../../utils/bmp2dhr/b2d
|
||||
PNG2GR = ../../../utils/gr-utils/png2gr
|
||||
LZSA = ~/research/lzsa/lzsa/lzsa
|
||||
|
||||
|
||||
|
@ -29,7 +29,7 @@ space_bars.o: space_bars.s instructions.s \
|
||||
####
|
||||
|
||||
HELLO: hello.bas
|
||||
../asoft_basic-utils/tokenize_asoft < hello.bas > HELLO
|
||||
$(TOKENIZE) < hello.bas > HELLO
|
||||
|
||||
####
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
include ../../Makefile.inc
|
||||
include ../../../Makefile.inc
|
||||
|
||||
PNG2RLE = ../../gr-utils/png2rle
|
||||
PNG2GR = ../../gr-utils/png2gr
|
||||
PNG2RLE = ../../../utils/gr-utils/png2rle
|
||||
PNG2GR = ../../../utils/gr-utils/png2gr
|
||||
LZSA = ~/research/lzsa/lzsa/lzsa
|
||||
|
||||
tfv_backgrounds.inc: \
|
||||
|
@ -1,7 +1,7 @@
|
||||
include ../../Makefile.inc
|
||||
include ../../../Makefile.inc
|
||||
|
||||
PNG2RLE = ../../gr-utils/png2rle
|
||||
PNG2GR = ../../gr-utils/png2gr
|
||||
PNG2RLE = ../../../utils/gr-utils/png2rle
|
||||
PNG2GR = ../../../utils/gr-utils/png2gr
|
||||
LZSA = ~/research/lzsa/lzsa/lzsa
|
||||
|
||||
tfv_title.inc: \
|
||||
|
@ -39,7 +39,7 @@ check_button0:
|
||||
|
||||
button0_clear:
|
||||
lda JS_BUTTON_STATE
|
||||
and #(~JS_BUTTON0)
|
||||
and #<(~JS_BUTTON0) ; hack
|
||||
sta JS_BUTTON_STATE
|
||||
jmp js_check
|
||||
|
||||
@ -59,7 +59,7 @@ check_button1:
|
||||
|
||||
button1_clear:
|
||||
lda JS_BUTTON_STATE
|
||||
and #(~JS_BUTTON1)
|
||||
and #<(~JS_BUTTON1)
|
||||
sta JS_BUTTON_STATE
|
||||
; jmp js_check
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user