From 1439ca0580cb6fc224a0d146f2efb0e4a165df9f Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 26 Jun 2016 21:34:37 -0400 Subject: [PATCH] Added a quick automatic issuing of the 'LOAD' command. --- Machines/Vic-20/Vic20.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Machines/Vic-20/Vic20.cpp b/Machines/Vic-20/Vic20.cpp index 1511f6246..d8a977dcd 100644 --- a/Machines/Vic-20/Vic20.cpp +++ b/Machines/Vic-20/Vic20.cpp @@ -146,6 +146,7 @@ void Machine::add_prg(size_t length, const uint8_t *data) void Machine::set_tape(std::shared_ptr tape) { _tape.set_tape(tape); + set_typer_for_string("LOAD\n"); } void Machine::tape_did_change_input(Tape *tape)