diff options
author | Dimitri Sokolyuk <demon@dim13.org> | 2018-02-11 16:38:03 +0100 |
---|---|---|
committer | Dimitri Sokolyuk <demon@dim13.org> | 2018-02-11 16:38:03 +0100 |
commit | f2b09c807835bafffcaa21196a57b2a5dddafc98 (patch) | |
tree | 9447c8e85b5d204ca1ccd1abe8101509cedf971b /core_test.go | |
parent | 0ef87d550bf59a7ae268c7017879495917633fd9 (diff) |
fix tests
Diffstat (limited to 'core_test.go')
-rw-r--r-- | core_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core_test.go b/core_test.go index cbc8f2f..07a905f 100644 --- a/core_test.go +++ b/core_test.go @@ -112,7 +112,7 @@ func TestEval(t *testing.T) { }, { // ! ins: []Instruction{Lit(1), Lit(0), ALU{Opcode: opN, NtoAtT: true, Ddir: -1}}, - end: Core{pc: 3, st0: 1, d: stack{data: [0x20]uint16{0, 0, 1}, sp: 1}, memory: [0x4000]uint16{1}}, + end: Core{pc: 3, st0: 1, d: stack{data: [0x20]uint16{0, 0, 1}, sp: 1}, memory: [0x2000]uint16{1}}, }, } @@ -147,7 +147,7 @@ func TestNextST0(t *testing.T) { {ins: ALU{Opcode: opNrshiftT}, st0: 0x3f, state: Core{st0: 0x02, d: stack{data: [0x20]uint16{0, 0xaa, 0xff}, sp: 2}}}, {ins: ALU{Opcode: opTminus1}, st0: 0x54, state: Core{st0: 0x55}}, {ins: ALU{Opcode: opR}, st0: 0x5, state: Core{r: stack{data: [0x20]uint16{0, 0x05}, sp: 1}}}, - {ins: ALU{Opcode: opAtT}, st0: 0x5, state: Core{st0: 0x02, memory: [0x4000]uint16{0, 5, 10}}}, + {ins: ALU{Opcode: opAtT}, st0: 0x5, state: Core{st0: 0x02, memory: [0x2000]uint16{0, 5, 10}}}, {ins: ALU{Opcode: opNlshiftT}, st0: 0x3fc, state: Core{st0: 0x02, d: stack{data: [0x20]uint16{0, 0xaa, 0xff}, sp: 2}}}, {ins: ALU{Opcode: opDepth}, st0: 0x305, state: Core{r: stack{sp: 3}, d: stack{sp: 5}}}, {ins: ALU{Opcode: opNuleT}, st0: 0xffff, state: Core{st0: 0xff, d: stack{data: [0x20]uint16{0, 0xaa, 0xbb}, sp: 2}}}, @@ -170,7 +170,7 @@ func TestLoadBytes(t *testing.T) { if err := j1.LoadBytes(data); err != nil { t.Fatal(err) } - expect := [0x4000]uint16{0x0201, 0x0804} + expect := [0x2000]uint16{0x0201, 0x0804} if j1.memory != expect { t.Errorf("got %v, want %v", j1.memory[:2], expect) } |