1
0
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:
Thomas Harte
2017-09-29 20:08:36 -04:00
parent fe3cc5c57c
commit 698ffca51b
7 changed files with 60 additions and 237 deletions
+6
View File
@@ -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;
// }
};
/*!