Beginning to add Program Counter and Stack Pointer

Beginning to add initil Instruction Set
This commit is contained in:
2026-05-31 21:29:23 -04:00
parent a958d11c4e
commit faa7801376
5 changed files with 84 additions and 30 deletions
-3
View File
@@ -52,7 +52,6 @@ namespace CPUSimulation
return _bits;
}
}
public class MemoryBank
{
Dictionary<string, Byte> _bytes;
@@ -75,7 +74,6 @@ namespace CPUSimulation
_bytes[address] = data;
}
}
public class Address
{
Byte _highByte;
@@ -135,7 +133,6 @@ namespace CPUSimulation
return addressString;
}
}
public class Word
{
Byte[] _bytes;