Skip to content

Commit

Permalink
Fully test segment registers.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHarte committed Nov 11, 2023
1 parent 7abd4d9 commit 2551e73
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion OSBindings/Mac/Clock SignalTests/8088Tests.mm
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ void did_update(Source segment) {
cs_ == rhs.cs_ &&
ds_ == rhs.ds_ &&
si_ == rhs.si_ &&
ip_ == rhs.ip_;
ip_ == rhs.ip_ &&
es_base_ == rhs.es_base_ &&
cs_base_ == rhs.cs_base_ &&
ds_base_ == rhs.ds_base_ &&
ss_base_ == rhs.ss_base_;
}
};
struct Memory {
Expand Down

0 comments on commit 2551e73

Please sign in to comment.