From 6b1935d69e7dfec69ec066f29bf27e139209fa47 Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Thu, 30 Jan 2020 23:23:15 +0200 Subject: test(instruction): fix incorrect opcode in tests --- src/instruction.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/instruction.spec.ts') diff --git a/src/instruction.spec.ts b/src/instruction.spec.ts index 2ffbe3c..2c5244e 100644 --- a/src/instruction.spec.ts +++ b/src/instruction.spec.ts @@ -496,7 +496,7 @@ describe('avrInstruction', () => { }); it('should execute `MUL r0, r1` and update the zero flag', () => { - loadProgram('569c'); + loadProgram('019c'); cpu.data[0] = 0; // r0 <- 0 cpu.data[1] = 9; // r1 <- 9 avrInstruction(cpu); -- cgit v1.2.3