mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-24 20:16:41 +00:00
Recasts the [M]FM parser in terms of the new factoring.
Temporarily breaks SSD writing support.
This commit is contained in:
@@ -31,6 +31,12 @@ class Track {
|
||||
bool operator < (const Address &rhs) const {
|
||||
return (head < rhs.head) || (position < rhs.position);
|
||||
}
|
||||
// Address(const Address &rhs) noexcept : head(rhs.head), position(rhs.position) {}
|
||||
// const Address &operator =(const Address &rhs) {
|
||||
// head = rhs.head;
|
||||
// position = rhs.position;
|
||||
// return *this;
|
||||
// }
|
||||
};
|
||||
|
||||
/*!
|
||||
|
||||
Reference in New Issue
Block a user