From: IrgendwerA8 Date: Wed, 13 Mar 2019 07:19:04 +0000 (+0100) Subject: AtariOS: Fix for FPIDX enum X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bcbcbbd9c0c1034b07f01acca7cc4c0b4597559a;p=cc65 AtariOS: Fix for FPIDX enum --- diff --git a/include/_atarios.h b/include/_atarios.h index 9a8a864b7..bed840100 100644 --- a/include/_atarios.h +++ b/include/_atarios.h @@ -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 */