uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

system.h (583B)


      1 /*
      2 Copyright (c) 2022-2025 Devine Lu Linvega, Andrew Alderwick
      3 
      4 Permission to use, copy, modify, and distribute this software for any
      5 purpose with or without fee is hereby granted, provided that the above
      6 copyright notice and this permission notice appear in all copies.
      7 
      8 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
      9 WITH REGARD TO THIS SOFTWARE.
     10 */
     11 
     12 #define RAM_PAGES 0x10
     13 
     14 void system_reboot(int soft);
     15 int system_error(char *msg, const char *err);
     16 int system_boot(Uint8 *ram, char *rompath);
     17 
     18 Uint8 system_dei(Uint8 addr);
     19 void system_deo(Uint8 addr);