mame/src/lib/formats/ace_tap.h
Miodrag Milanovic ddb290d5f6 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
2016-10-22 13:13:17 +02:00

33 lines
594 B
C

// license:BSD-3-Clause
// copyright-holders:Wilbert Pol
/*********************************************************************
ace_tap.h
Format code for Jupiter Ace cassette files
*********************************************************************/
#ifndef ACE_TAP_H
#define ACE_TAP_H
#include "cassimg.h"
#if 0
struct ace_tape_t
{
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
CASSETTE_FORMATLIST_EXTERN(ace_cassette_formats);
#endif /* ACE_TAP_H */