1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-04-16 00:21:11 +00:00

Built basic debugger UI and execution framework; a few bugfixes. CPU now executes uCode up until the first STARTF (unimplemented).

This commit is contained in:
Josh Dersch
2015-09-01 17:06:57 -07:00
parent c4f8fe951f
commit 0ced1a2ef8
10 changed files with 1283 additions and 52 deletions

View File

@@ -10,7 +10,7 @@ namespace Contralto.Memory
{
public Memory()
{
_mem = new ushort[0xffff];
_mem = new ushort[0x10000];
}
public ushort Read(int address)