diff options
| author | Louis Burda <quent.burda@gmail.com> | 2022-12-19 00:53:51 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2022-12-19 00:54:23 +0100 |
| commit | d63e7e7e8c8632d7c0b1a9e2d2f9532b4f4815ae (patch) | |
| tree | 34471df766ec5ed29fe27b7fbf0093789b5089c1 /test/aes-detect_guest.c | |
| parent | 5e99ea7f111134c7a1c7103590b711d59edafa9b (diff) | |
| download | cachepc-d63e7e7e8c8632d7c0b1a9e2d2f9532b4f4815ae.tar.gz cachepc-d63e7e7e8c8632d7c0b1a9e2d2f9532b4f4815ae.zip | |
Fix page fault handling and investigate exec stepping with minimal vm
Diffstat (limited to 'test/aes-detect_guest.c')
| -rw-r--r-- | test/aes-detect_guest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/aes-detect_guest.c b/test/aes-detect_guest.c index 3da4044..1b21ebd 100644 --- a/test/aes-detect_guest.c +++ b/test/aes-detect_guest.c @@ -39,11 +39,11 @@ main(int argc, const char **argv) memset(buf, 0, L1_LINESIZE * L1_SETS); while (1) { - CPC_DO_VMMCALL(CPC_CPUID_START_TRACK, 0); + CPC_DO_VMMCALL(CPC_GUEST_START_TRACK, 0); buf[L1_LINESIZE * 5] += 1; - CPC_DO_VMMCALL(CPC_CPUID_START_TRACK, 0); + CPC_DO_VMMCALL(CPC_GUEST_START_TRACK, 0); } return 0; |
