summaryrefslogtreecommitdiffstats
path: root/src/lib/formats/ace_tap.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
commitddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch)
treea70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/lib/formats/ace_tap.h
parent333bff8de64dfaeb98134000412796b4fdef970b (diff)
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/lib/formats/ace_tap.h')
-rw-r--r--src/lib/formats/ace_tap.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/formats/ace_tap.h b/src/lib/formats/ace_tap.h
index 27a1e93129d..0113fdf6484 100644
--- a/src/lib/formats/ace_tap.h
+++ b/src/lib/formats/ace_tap.h
@@ -16,14 +16,14 @@
#if 0
struct ace_tape_t
{
- UINT8 hdr_type;
- UINT8 hdr_name[10];
- UINT16 hdr_len;
- UINT16 hdr_addr;
- UINT8 hdr_vars[8];
- UINT8 hdr_3c4c;
- UINT8 hdr_3c4d;
- UINT16 dat_len;
+ uint8_t hdr_type;
+ uint8_t hdr_name[10];
+ uint16_t hdr_len;
+ uint16_t hdr_addr;
+ uint8_t hdr_vars[8];
+ uint8_t hdr_3c4c;
+ uint8_t hdr_3c4d;
+ uint16_t dat_len;
};
#endif