diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-01 18:20:50 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-01 18:20:50 -0400 |
commit | 12e098b6823b7d688434bc69729216b2268b1852 (patch) | |
tree | 51385c1183ecb4caed550dfeea514512c4589aed /msim/sim.h | |
parent | dont require phdr to link (diff) | |
download | mips-12e098b6823b7d688434bc69729216b2268b1852.tar.gz mips-12e098b6823b7d688434bc69729216b2268b1852.tar.bz2 mips-12e098b6823b7d688434bc69729216b2268b1852.zip |
fix sign extension, support branch delay slot
Diffstat (limited to '')
-rw-r--r-- | msim/sim.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ /// arguments struct simulator_args { char *executable; - bool memchk; + bool jdelay; bool debug; }; |