diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-01 18:22:10 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-01 18:22:10 -0400 |
commit | 091c684bf1d2cca09da001b9170b205dbe5c333f (patch) | |
tree | e7dd5091ddb989b1eae35f8a5130a66b2d7b4d9b /test/masm/fault.asm | |
parent | dont hardcode RA in JALR (diff) | |
download | mips-091c684bf1d2cca09da001b9170b205dbe5c333f.tar.gz mips-091c684bf1d2cca09da001b9170b205dbe5c333f.tar.bz2 mips-091c684bf1d2cca09da001b9170b205dbe5c333f.zip |
add recursion test, add noops for branch delay slots
Diffstat (limited to 'test/masm/fault.asm')
-rw-r--r-- | test/masm/fault.asm | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/masm/fault.asm b/test/masm/fault.asm deleted file mode 100644 index df700cf..0000000 --- a/test/masm/fault.asm +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright (c) 2024 Freya Murphy - -# file: div.asm -# test: should cause page fault - -.text -.align 2 -.globl main - -main: - lw $t0, 0($zero) - - # return - li $v0, 0 - jr $ra |