1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +00:00

AtariOS: Fix for FPIDX enum

This commit is contained in:
IrgendwerA8 2019-03-13 08:19:04 +01:00
parent 2617e9a3c0
commit bcbcbbd9c0

View File

@ -150,12 +150,12 @@ struct __fpreg {
typedef struct __fpreg fpreg_t;
enum { /* enum for access of floating point registers */
enum FPIDX { /* enum for access of floating point registers */
R0 = 0, /* (to use as index) */
RE = 1,
R1 = 2,
R2 = 3
} FPIDX;
};
/* Define a structure with atari os register offsets */