Changeset bf89cfb in buchla-68k for include/objdefs.h


Ignore:
Timestamp:
07/15/2017 11:15:58 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
c80943f
Parents:
09d1345
Message:

No more warnings in vlib.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/objdefs.h

    r09d1345 rbf89cfb  
    1919        int32_t         F_Res1;         /* Reserved area #1 */
    2020        int32_t         F_Res2;         /* Reserved area #2 -- text origin */
    21         uint16_t        F_Res3;         /* Reserved area #3 -- flag word */
     21        int16_t         F_Res3;         /* Reserved area #3 -- flag word */
    2222
    2323                                        /* data origin - long */
     
    2525};
    2626
    27 #define F_R_C   0x601A          /* Magic for contiguous file */
    28 #define F_R_D   0x601B          /* Magic for discontiguous file */
     27#define F_R_C   0x601Au         /* Magic for contiguous file */
     28#define F_R_D   0x601Bu         /* Magic for discontiguous file */
    2929
    3030struct SYMBOL {                 /* Symbol table entry -- 14 bytes */
     
    3535};
    3636
    37 #define S_Def   0x8000          /* Defined */
    38 #define S_Equ   0x4000          /* Equated */
    39 #define S_Glb   0x2000          /* Global */
    40 #define S_Reg   0x1000          /* Equated register */
    41 #define S_Ext   0x0800          /* External reference */
    42 #define S_Data  0x0400          /* Data based relocatable */
    43 #define S_Text  0x0200          /* Text based relocatable */
    44 #define S_BSS   0x0100          /* BSS based relocatable */
     37#define S_Def   0x8000u         /* Defined */
     38#define S_Equ   0x4000u         /* Equated */
     39#define S_Glb   0x2000u         /* Global */
     40#define S_Reg   0x1000u         /* Equated register */
     41#define S_Ext   0x0800u         /* External reference */
     42#define S_Data  0x0400u         /* Data based relocatable */
     43#define S_Text  0x0200u         /* Text based relocatable */
     44#define S_BSS   0x0100u         /* BSS based relocatable */
Note: See TracChangeset for help on using the changeset viewer.