MCPcopy Create free account
hub / github.com/djhworld/simple-computer / XOR

Struct XOR

asm/instructions.go:346–349  ·  view source on GitHub ↗

XORS ---------------------- 0x00E0 = XOR R0, R0 0x00E1 = XOR R0, R1 0x00E2 = XOR R0, R2 0x00E3 = XOR R0, R3 0x00E4 = XOR R1, R0 0x00E5 = XOR R1, R1 0x00E6 = XOR R1, R2 0x00E7 = XOR R1, R3 0x00E8 = XOR R2, R0 0x00E9 = XOR R2, R1 0x00EA = XOR R2, R2 0x00EB = XOR R2, R3 0x00EC = XOR R3, R0 0x00ED = XOR

Source from the content-addressed store, hash-verified

344// 0x00EE = XOR R3, R2
345// 0x00EF = XOR R3, R3
346type XOR struct {
347 ARegister REGISTER
348 BRegister REGISTER
349}
350
351func (x XOR) Size() int {
352 return 1

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected