apple2ix/src/arm/glue-offsets.h
Aaron Culliney e4e0c941d3 Refactor CPU assembly for simplicity and efficiency
- Variables needed in assembly now accessible in a struct pointer that  avoids __PIC__ nastiness
    - Reduces code size and execution time for CPU thread
2018-01-15 16:19:21 -08:00

6 lines
91 B
C

#if __aarch64__
# include "glue-offsets64.h"
#else
# include "glue-offsets32.h"
#endif