mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-12 00:30:31 +00:00
Corrected: use format tag as intended.
This commit is contained in:
parent
00c32e4b59
commit
506276a2bd
@ -23,7 +23,7 @@
|
||||
|
||||
#include "../../../Inputs/QuadratureMouse/QuadratureMouse.hpp"
|
||||
|
||||
#define LOG_TRACE
|
||||
//#define LOG_TRACE
|
||||
|
||||
#include "../../../Components/6522/6522.hpp"
|
||||
#include "../../../Components/8530/z8530.hpp"
|
||||
|
@ -158,7 +158,12 @@ std::shared_ptr<::Storage::Disk::Track> DiskCopy42::get_track_at_position(::Stor
|
||||
// the Apple II, as I have no idea whatsoever what they
|
||||
// should be.
|
||||
|
||||
segment += Encodings::AppleGCR::Macintosh::header(0x22, uint8_t(address.position.as_int()), sector_id, !!address.head);
|
||||
segment += Encodings::AppleGCR::Macintosh::header(
|
||||
format_,
|
||||
uint8_t(address.position.as_int()),
|
||||
sector_id,
|
||||
!!address.head
|
||||
);
|
||||
segment += Encodings::AppleGCR::six_and_two_sync(7);
|
||||
segment += Encodings::AppleGCR::Macintosh::data(sector_id, sector_plus_tags);
|
||||
segment += Encodings::AppleGCR::six_and_two_sync(20);
|
||||
|
Loading…
x
Reference in New Issue
Block a user