R-PAGE
Resistance's Portable-Adventure-Game-Engine
helper.c
Go to the documentation of this file.
1 /* Resistance's Portable-Adventure-Game-Engine (R-PAGE), Copyright (C) 2019 François Gutherz, Resistance.no
2  Released under MIT License, see license.txt for details.
3 */
4 
5 #ifdef LATTICE
6 #include "rpage/aos/inc.prl"
7 
8 extern struct IntuitionBase *IntuitionBase;
9 extern struct GfxBase *GfxBase;
10 extern struct ExecBase *SysBase;
11 extern struct DosLibrary *DOSBase;
12 extern struct Custom far custom;
13 
14 UBYTE is_cpu_a_020(void) {
15  // printf("Kickstart v%d, ", SysBase->LibNode.lib_Version);
16 
17  if (SysBase->AttnFlags && AFF_68020) {
18  // printf("CPU is a 68020 or higher.\n");
19  return 1;
20  }
21 
22  // printf("CPU is a 68000 or 68010.\n");
23  return 0;
24 }
25 #endif
unsigned char UBYTE
Definition: utils.h:20
struct DosLibrary * DOSBase