mirror of
https://github.com/jscrane/Apple1.git
synced 2024-11-22 06:31:37 +00:00
sdtape -> filer
This commit is contained in:
parent
4f4955b2fb
commit
c73efc8d09
10
apple1.ino
10
apple1.ino
@ -29,7 +29,7 @@ void reset() {
|
||||
|
||||
io.reset();
|
||||
if (sd)
|
||||
io.tape.start(PROGRAMS);
|
||||
io.files.start(PROGRAMS);
|
||||
else
|
||||
io.status("No SD Card");
|
||||
}
|
||||
@ -67,22 +67,22 @@ void loop() {
|
||||
reset();
|
||||
break;
|
||||
case PS2_F2:
|
||||
filename = io.tape.advance();
|
||||
filename = io.files.advance();
|
||||
io.status(filename);
|
||||
break;
|
||||
case PS2_F3:
|
||||
filename = io.tape.rewind();
|
||||
filename = io.files.rewind();
|
||||
io.status(filename);
|
||||
break;
|
||||
case PS2_F4:
|
||||
io.load();
|
||||
break;
|
||||
case PS2_F6:
|
||||
io.status(checkpoint(io.tape, PROGRAMS));
|
||||
io.status(io.files.checkpoint());
|
||||
break;
|
||||
case PS2_F7:
|
||||
if (filename)
|
||||
restore(io.tape, PROGRAMS, filename);
|
||||
io.files.restore(filename);
|
||||
break;
|
||||
default:
|
||||
io.up(key);
|
||||
|
11
io.cpp
11
io.cpp
@ -2,7 +2,8 @@
|
||||
#include <stdint.h>
|
||||
#include <memory.h>
|
||||
#include <tftdisplay.h>
|
||||
#include <sdtape.h>
|
||||
#include <serialio.h>
|
||||
#include <filer.h>
|
||||
#include <keyboard.h>
|
||||
#include <timed.h>
|
||||
|
||||
@ -31,9 +32,9 @@ void io::reset() {
|
||||
}
|
||||
|
||||
void io::load() {
|
||||
if (tape.more()) {
|
||||
if (files.more()) {
|
||||
_loading = true;
|
||||
enter(tape.read());
|
||||
enter(files.read());
|
||||
}
|
||||
}
|
||||
|
||||
@ -150,8 +151,8 @@ uint8_t io::read_porta_cr() {
|
||||
return b;
|
||||
|
||||
if (_loading) {
|
||||
if (tape.more())
|
||||
enter(tape.read());
|
||||
if (files.more())
|
||||
enter(files.read());
|
||||
else
|
||||
_loading = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user