Converted address to 16-bit binary string rather than byte.

This commit is contained in:
2026-05-31 15:29:49 -04:00
parent 8cf9e2c5f5
commit 9efadc3b4a
13 changed files with 81 additions and 17 deletions
+68 -4
View File
@@ -34,23 +34,87 @@ namespace CPUSimulation
public class MemoryBank
{
Byte[] _bytes;
Dictionary<string, Byte> _bytes;
public MemoryBank(Byte[] bytes)
{
_bytes = bytes;
_bytes = new Dictionary<string, Byte>();
for (int i = 0; i < bytes.Length; i++)
{
_bytes[new Address((Int16)i).ToString()] = bytes[i];
}
}
public Byte Read(byte address)
public Byte Read(string address)
{
return _bytes[address];
}
public void Write(byte address, Byte data)
public void Write(string address, Byte data)
{
_bytes[address] = data;
}
}
public class Address
{
Byte _highByte;
Byte _lowByte;
public Address(Byte highByte, Byte lowByte)
{
_highByte = highByte;
_lowByte = lowByte;
}
public Address (Int16 address)
{
byte highByteValue = (byte)(address / 256);
byte lowByteValue = (byte)(address % 256);
_highByte = new Byte(GetBitsFromByte(highByteValue));
_lowByte = new Byte(GetBitsFromByte(lowByteValue));
}
public Address(string address)
{
if (address.Length != 16)
{
throw new ArgumentException("Address string must be exactly 16 characters long.");
}
Bit[] highByteBits = new Bit[8];
Bit[] lowByteBits = new Bit[8];
for (int i = 0; i < 8; i++)
{
highByteBits[i] = new Bit(address[i] == '1');
lowByteBits[i] = new Bit(address[i + 8] == '1');
}
_highByte = new Byte(highByteBits);
_lowByte = new Byte(lowByteBits);
}
private Bit[] GetBitsFromByte(byte value)
{
Bit[] bits = new Bit[8];
for (int i = 0; i < 8; i++)
{
bits[7 - i] = new Bit((value & (1 << i)) != 0);
}
return bits;
}
public override string ToString()
{
string addressString = "";
foreach (Bit bit in _highByte.GetBits())
{
addressString += bit.GetValue() ? "1" : "0";
}
foreach (Bit bit in _lowByte.GetBits())
{
addressString += bit.GetValue() ? "1" : "0";
}
return addressString;
}
}
public class Word
{
Byte[] _bytes;