From 34341c9500c0a0a2520826b6eaf0095c3f9ce9fc Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Thu, 16 Jun 2016 13:03:19 -0700 Subject: Add explicit test for stepping over branches/jumps. --- debug/programs/step.S | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 debug/programs/step.S (limited to 'debug/programs/step.S') diff --git a/debug/programs/step.S b/debug/programs/step.S new file mode 100644 index 0000000..49f82d6 --- /dev/null +++ b/debug/programs/step.S @@ -0,0 +1,17 @@ +// Test stepping over a variety of instructions. + + .global main + +main: + li t0, 5 // 0 + beq zero, zero, one // 0x4 + nop // 0x8 +one: + beq zero, t0, one // 0xc + jal two // 0x10 + +three: + j three // 0x14 + +two: + ret // 0x18 -- cgit v1.1