From baf56330a3fe576ba619a616b2367fa2c0957f4b Mon Sep 17 00:00:00 2001 From: MatCat Date: Sat, 10 Apr 2021 11:47:52 -0700 Subject: [PATCH] Refacotred ISA opcodes --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index 90c2db6..5a9d6df 100644 --- a/js/main.js +++ b/js/main.js @@ -49,7 +49,7 @@ cpu.RAM[0xEE] = is_JMP_i.Bytecode; cpu.RAM[0xEF] = v_printloop; cpu.RAM[0xF0] = is_PLAB.Bytecode; cpu.RAM[0xF1] = is_PLA.Bytecode; // return -cpu.RAM[0xF2] = is_PRTS.Bytecode; +cpu.RAM[0xF2] = is_RTS_paged.Bytecode; stringToRAM("Welcome to the MatCat 8SA1 Computer Simulator!\n\nThis is a full hardware simulation of the computer to allow for easy development testing. It is currently a heavy work in progress as it is very early alpha, so check back often for new features!\n\n\nThis demo can be seen in the examples folder on the git page at: \nhttps://mygit.space/MatCat.OpenSource/8SA1Sim",cpu.RAM,0x100);