mirror of
https://github.com/BluestormDNA/ProjectPSX.git
synced 2025-04-02 10:52:34 -04:00
Exception Constants
This commit is contained in:
parent
9a74ef5079
commit
a19fe1cea8
1 changed files with 14 additions and 0 deletions
14
ProjectPSX/PSX/EX.cs
Normal file
14
ProjectPSX/PSX/EX.cs
Normal file
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue