mirror of
https://github.com/copy/v86.git
synced 2025-12-31 04:23:15 +00:00
reduce verbosity of cpu logging
This commit is contained in:
parent
45c4a7d0e1
commit
44fb0d57ea
1 changed files with 7 additions and 7 deletions
|
|
@ -713,13 +713,13 @@ pub unsafe fn iret(is_16: bool) {
|
|||
let executable = access & 8 == 8;
|
||||
let conforming = access & 4 == 4;
|
||||
if dpl < *cpl && !(executable && conforming) {
|
||||
dbg_log!(
|
||||
"set segment to null sreg={} dpl={} executable={} conforming={}",
|
||||
reg,
|
||||
dpl,
|
||||
executable,
|
||||
conforming
|
||||
);
|
||||
//dbg_log!(
|
||||
// "set segment to null sreg={} dpl={} executable={} conforming={}",
|
||||
// reg,
|
||||
// dpl,
|
||||
// executable,
|
||||
// conforming
|
||||
//);
|
||||
*segment_is_null.offset(reg as isize) = true;
|
||||
*sreg.offset(reg as isize) = 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue