An emulator, assembler, and disassembler for the Sega Game Gear
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

14 líneas
335 B

  1. /* Copyright (C) 2014-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
  2. Released under the terms of the MIT License. See LICENSE for details. */
  3. #pragma once
  4. #include <stdint.h>
  5. /* Functions */
  6. uint8_t bcd_decode(uint8_t);
  7. uint64_t get_time_ns();
  8. const char* region_code_to_string(uint8_t);
  9. uint8_t region_string_to_code(const char*);