fix breakages

This commit is contained in:
steve 2024-09-22 09:19:19 +01:00
parent 9a5bbac1a4
commit 0d40d7008b
2 changed files with 3 additions and 2 deletions

View File

@ -43,6 +43,7 @@ terminal_disp dsp(Serial);
#endif
io io(files, kbd, dsp);
Memory memory;
r6502 cpu(memory);
void reset() {

View File

@ -35,10 +35,10 @@ CPPFLAGS += -DHARDWARE_H=\"hw/ttgo-t7-v14-mini32.h\"
LIBRARIES += FabGL WiFi
else
BOARD := node32s
BOARD := lolin32
CPPFLAGS += -DUSER_SETUP_LOADED -DILI9341_DRIVER -DTFT_CS=5 -DTFT_DC=2 \
-DTFT_RST=-1 -DSPI_FREQUENCY=40000000 -DLOAD_GLCD \
-DHARDWARE_H=\"hw/node32s-example.h\"
-DHARDWARE_H=\"hw/esp32-example.h\"
LIBRARIES += TFT_eSPI
endif
endif