summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/cbm_crt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/cbm_crt.h')
-rw-r--r--src/lib/formats/cbm_crt.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/lib/formats/cbm_crt.h b/src/lib/formats/cbm_crt.h
index 96d04cea2f6..2a5e5331a8a 100644
--- a/src/lib/formats/cbm_crt.h
+++ b/src/lib/formats/cbm_crt.h
@@ -108,25 +108,25 @@ enum
struct cbm_crt_header
{
- UINT8 signature[16];
- UINT8 header_length[4];
- UINT8 version[2];
- UINT8 hardware[2];
- UINT8 exrom;
- UINT8 game;
- UINT8 reserved[6];
- UINT8 name[32];
+ uint8_t signature[16];
+ uint8_t header_length[4];
+ uint8_t version[2];
+ uint8_t hardware[2];
+ uint8_t exrom;
+ uint8_t game;
+ uint8_t reserved[6];
+ uint8_t name[32];
};
struct cbm_crt_chip
{
- UINT8 signature[4];
- UINT8 packet_length[4];
- UINT8 chip_type[2];
- UINT8 bank[2];
- UINT8 start_address[2];
- UINT8 image_size[2];
+ uint8_t signature[4];
+ uint8_t packet_length[4];
+ uint8_t chip_type[2];
+ uint8_t bank[2];
+ uint8_t start_address[2];
+ uint8_t image_size[2];
};
@@ -137,7 +137,7 @@ struct cbm_crt_chip
std::string cbm_crt_get_card(util::core_file &file);
bool cbm_crt_read_header(util::core_file &file, size_t *roml_size, size_t *romh_size, int *exrom, int *game);
-bool cbm_crt_read_data(util::core_file &file, UINT8 *roml, UINT8 *romh);
+bool cbm_crt_read_data(util::core_file &file, uint8_t *roml, uint8_t *romh);
#endif