diff options
author | Freya Murphy <freya@freyacat.org> | 2024-09-30 18:52:25 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-09-30 18:52:25 -0400 |
commit | 4af200b00188e02b2c6207dfe494a3dd12556c5f (patch) | |
tree | 25d993117e6306907d1d3821ef4fca729390d221 /msim/fault.h | |
parent | update runtime to return exit code from main (diff) | |
download | mips-4af200b00188e02b2c6207dfe494a3dd12556c5f.tar.gz mips-4af200b00188e02b2c6207dfe494a3dd12556c5f.tar.bz2 mips-4af200b00188e02b2c6207dfe494a3dd12556c5f.zip |
msim done (ish)
Diffstat (limited to '')
-rw-r--r-- | msim/fault.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/msim/fault.h b/msim/fault.h new file mode 100644 index 0000000..26371b3 --- /dev/null +++ b/msim/fault.h @@ -0,0 +1,10 @@ +/* Copyright (c) 2024 Freya Murphy */ + +#ifndef __FAULT_H__ +#define __FAULT_H__ + +#include "sim.h" + +void init_handlers(struct simulator *s); + +#endif /* __FAULT_H__ */ |