mirror of
https://github.com/jscrane/Apple1.git
synced 2024-11-22 06:31:37 +00:00
filer config
This commit is contained in:
parent
3dd666cf3f
commit
511522599d
5
Makefile
5
Makefile
@ -1,5 +1,10 @@
|
||||
t ?= esp32
|
||||
|
||||
ifeq ($t, avr)
|
||||
BOARD := uno
|
||||
CPPFLAGS := -DNO_CHECKPOINT -DNO_DISPLAY_BUFFER -DHARDWARE_H=\"hw/blank.h\"
|
||||
endif
|
||||
|
||||
ifeq ($t, esp8266)
|
||||
BOARD := d1_mini
|
||||
UPLOAD_SPEED := 921600
|
||||
|
@ -19,7 +19,7 @@ prom m(monitor, sizeof(monitor));
|
||||
#endif
|
||||
|
||||
ram pages[RAM_SIZE / 1024];
|
||||
io io;
|
||||
io io(PROGRAMS);
|
||||
|
||||
r6502 cpu(memory);
|
||||
const char *filename;
|
||||
@ -29,7 +29,7 @@ void reset() {
|
||||
|
||||
io.reset();
|
||||
if (sd)
|
||||
io.files.start(PROGRAMS);
|
||||
io.files.start();
|
||||
else
|
||||
io.status("No SD Card");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user