mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
212 B
14 lines
212 B
#ifndef _Sas_c_h
|
|
#define _Sas_c_h
|
|
enum SAS_MEM_TYPE
|
|
{
|
|
SAS_RAM = 0,
|
|
SAS_VIDEO = 1,
|
|
SAS_ROM = 2,
|
|
SAS_WRAP = 3,
|
|
SAS_IO = 4,
|
|
SAS_MM_LIM = 5,
|
|
SAS_INACCESSIBLE = 6,
|
|
SAS_DANGEROUS = 7
|
|
};
|
|
#endif /* ! _Sas_c_h */
|