Exception Constants

This commit is contained in:
Blue 2019-01-26 19:53:09 +01:00
parent 9a74ef5079
commit a19fe1cea8

14
ProjectPSX/PSX/EX.cs Normal file
View 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;
}
}