Vectorize RSP

This commit is contained in:
CocoSimone
2023-02-18 00:12:59 +01:00
parent 55f792d995
commit 9837919678
6 changed files with 179 additions and 60 deletions

View File

@@ -9,7 +9,7 @@ struct Registers;
struct Event {
u64 time = UINT64_MAX;
void(*event_cb)(n64::Mem&, n64::Registers&) = nullptr;
void(*handler)(n64::Mem&, n64::Registers&) = nullptr;
friend bool operator<(const Event& rhs, const Event& lhs) {
return lhs.time < rhs.time;