An emulator, assembler, and disassembler for the Sega Game Gear
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* Copyright (C) 2014-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
- Released under the terms of the MIT License. See LICENSE for details. */
-
- #pragma once
-
- #include <stdint.h>
-
- #define INVALID_SIZE_CODE 0x8
-
- /* Functions */
-
- uint8_t bcd_decode(uint8_t);
- uint64_t get_time_ns();
- const char* region_code_to_string(uint8_t);
- uint8_t region_string_to_code(const char*);
- size_t size_code_to_bytes(uint8_t);
- uint8_t size_bytes_to_code(size_t);
|