Bochs Bug??

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
PlayOS

Bochs Bug??

Post by PlayOS »

I am using Bochs 1.3 and everytime I attempt to use this code

; Disable NMI
in al, 0x70
or al, 0x80
out 0x70, al

; Enable NMI
in ax, 0x70
and ax, 0x7f
out 0x70, ax

I get an invalid CMOS read\write error.

If i don't disable NMI will this affect the IDT setup or will it still be OK?
User avatar
Pype.Clicker
Member
Member
Posts: 5964
Joined: Wed Oct 18, 2006 2:31 am
Location: In a galaxy, far, far away
Contact:

Re:Bochs Bug??

Post by Pype.Clicker »

the only code that disabled NMI for pmode setting i ever see was one that never worked and all the setup code that i saw working had no NMI stuff ...
Post Reply