1
0
mirror of https://github.com/aap/pdp6.git synced 2026-01-13 15:27:46 +00:00
aap.pdp6/tools/pdp6bin.h
2016-10-19 12:11:11 +02:00

23 lines
313 B
C

/* just a subset here */
enum ItemType
{
Nothing = 0,
Code = 1,
Symbols = 2,
Entry = 4,
End = 5,
Name = 6,
Start = 7,
};
enum SymType
{
SymName = 000,
SymGlobal = 004,
SymLocal = 010,
SymBlock = 014,
SymGlobalH = 044, /* hidden */
SymLocalH = 050, /* */
SymUndef = 060,
};