mirror of
https://github.com/TomHarte/CLK.git
synced 2025-10-05 14:16:33 +00:00
Compare commits
2 Commits
2025-10-03
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
6b437c3907 | ||
|
4756f63169 |
@@ -186,7 +186,9 @@ public:
|
||||
|
||||
InstructionSet::x86::SegmentRegisterSet<Descriptor> descriptors;
|
||||
|
||||
auto operator <=>(const Segments &rhs) const = default;
|
||||
auto operator ==(const Segments &rhs) const {
|
||||
return descriptors == rhs.descriptors;
|
||||
}
|
||||
|
||||
private:
|
||||
void load_real(const Source segment) {
|
||||
|
@@ -26,6 +26,9 @@ template <typename Full, typename Half> union alignas(Full) alignas(Half) Regist
|
||||
auto operator <=>(const RegisterPair &rhs) const {
|
||||
return full <=> rhs.full;
|
||||
}
|
||||
auto operator ==(const RegisterPair &rhs) const {
|
||||
return full == rhs.full;
|
||||
}
|
||||
#if TARGET_RT_BIG_ENDIAN
|
||||
struct {
|
||||
Half high, low;
|
||||
|
@@ -160,7 +160,7 @@ private:
|
||||
@interface CPCShakerTests : XCTestCase
|
||||
@end
|
||||
|
||||
@implementation CPCShakerTests {}
|
||||
@implementation CPCShakerTests
|
||||
|
||||
- (void)testCSLPath:(NSString *)path name:(NSString *)name {
|
||||
using namespace Storage::Automation;
|
||||
|
Reference in New Issue
Block a user