From dcac42bd7bc57e943d0963e066d3d8213336e868 Mon Sep 17 00:00:00 2001 From: Blue Date: Mon, 28 Jan 2019 18:47:26 +0100 Subject: [PATCH] More Exceptions --- ProjectPSX/PSX/EX.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ProjectPSX/PSX/EX.cs b/ProjectPSX/PSX/EX.cs index 641cf78..a7ec905 100644 --- a/ProjectPSX/PSX/EX.cs +++ b/ProjectPSX/PSX/EX.cs @@ -10,6 +10,7 @@ namespace ProjectPSX { public const uint STORE_ADRESS_ERROR = 0x5; public const uint SYSCALL = 0x8; public const uint BREAK = 0x9; + public const uint ILLEGAL_INSTR = 0xA; public const uint COPROCESSOR_ERROR = 0xB; public const uint OVERFLOW = 0xC; }