mirror of
https://github.com/holub/mame
synced 2025-05-21 05:08:54 +03:00

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
33 lines
594 B
C
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 */
|