| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
| |
-sound/tiasound.cpp: Use some vaguely C++-like code internally.
|
| |
|
|
|
|
|
|
|
|
|
| |
The only link dependency left is emu_fatalerror. The format handlers
really shouldn't be throwing fatal errors at all - they should just
fail to load an image they can't handle. Maybe the interface should
be enhanced to allow better propagation of errors up from the format
handlers so they can be displayed in a UI rather than just logged.
The only other two dependencies are on logmacro.h (pure macros) and
the PAIR type from emucore.h (possibly worth moving to util).
|
| | |
|
| |
|
|
|
|
| |
Current TZX specification says: "Header blocks have 8063 and data blocks have 3223 pilot pulses"
It also says: "The pilot tone consists in 8063 pulses if the first data byte (flag byte) is < 128, 3223 otherwise"
(unlike tap format that if flag byte is 0 indicates header block and data block otherwise).
|
| |
|
| |
MT 05516
|
| | |
|
| |
|
|
|
|
| |
finished at the end of tape
As discussed in #5255
|
| | |
|
| |
|
| |
Fix MT #07296
|
| | |
|
| |
|
|
| |
Not only when pause from block is greater than zero .
Otherwise the last pulse is not terminated properly in some cases.
|
| |
|
|
| |
https://github.com/mamedev/mess-cvs/commit/5a0a43eb8f79cc3385d957a7da45586de6c2a989#diff-26e48bc5e5a1dc7272914d9f9cd3249d
|
| | |
|
| |
|
|
|
| |
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
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|