Example #1
0
 public void Add(AddressSyntax addressSyntax, int lineNumber)
 {
     _bytes[OriginAddress] = new InstructionByte(addressSyntax, lineNumber);
     OriginAddress++;
 }
Example #2
0
 public void Add(byte @byte, int lineNumber)
 {
     _bytes[OriginAddress] = new InstructionByte(@byte, lineNumber);
     OriginAddress++;
 }