mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-10-31 09:15:51 +00:00
13 lines
127 B
C
13 lines
127 B
C
#ifndef __DISKTYPES_H
|
|
#define __DISKTYPES_H
|
|
|
|
enum {
|
|
T_AUTO = 0,
|
|
T_WOZ = 1,
|
|
T_NIB = 2,
|
|
T_DSK = 3,
|
|
T_PO = 4
|
|
};
|
|
|
|
#endif
|