diff --git a/ProjectPSX/PSX/EX.cs b/ProjectPSX/PSX/EX.cs new file mode 100644 index 0000000..c325aaa --- /dev/null +++ b/ProjectPSX/PSX/EX.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectPSX { + static class EX { + public const uint LOAD_ADRESS_ERROR = 0x4; + public const uint STORE_ADRESS_ERROR = 0x5; + public const uint SYSCALL = 0x8; + public const uint OVERFLOW = 0xC; + } +}