From 02016761fd158718e243d942272822ad27545e0d Mon Sep 17 00:00:00 2001 From: bd Date: Sun, 27 Apr 2025 03:02:59 -0400 Subject: Add infinity, an infinite loop benchmark test --- input/infinity.asm | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 input/infinity.asm diff --git a/input/infinity.asm b/input/infinity.asm new file mode 100644 index 0000000..16b7fd7 --- /dev/null +++ b/input/infinity.asm @@ -0,0 +1,13 @@ +;;;;;;;; +;;; an infinite loop for testing simulator speed + +.data +.text + addi $5 $0 0x0 +LOOP: + addi $5 $5 0x1 + subi $5 $5 0x0 + jrl LOOP + nop + nop + nop -- cgit v1.2.3