openbsd-ports/emulators/bochs/patches/patch-cpu_arith8_cc
todd 923f7975fe o take over maintainership
o too many changes to mention specifically, but amongst them:
	- better error reporting
	- openbsd boots, freebsd boots
	- new 'term' flavor, I added a textmode interface, the only drawback
	  is that control-c is intercepted, and you must kill -9 it from
	  another tty if it doesn't exit normally
	- new flavors:
		- debugger -> debug (for shortness)
		- i386
		- pci
		- smp
		- net (compiles, does not yet provide networking, if anyone
			wants to help, I'd be ELATED to have this fixed!)
		- no_x11 (made it actually work)
		- term (make sure to use 'log: /dev/null' or something else
		  on the cmdline, otherwise, debugging and the screen will
		  start getting quite confusing!)
	- better error reporting (and no error reporting where it is not
	  necessary; a typicall boot of cdrom28.fs is a screenful of output now)
	- in general, if the hardware reaches an unknown state, fail
	  gracefully instead of calling exit(1) .. are we trying to work or
	  are we trying to .. fail?  I like working myself.
2001-02-02 16:59:05 +00:00

21 lines
558 B
Plaintext

$OpenBSD: patch-cpu_arith8_cc,v 1.1 2001/02/02 16:59:07 todd Exp $
--- cpu/arith8.cc.orig Sat Mar 25 21:39:07 2000
+++ cpu/arith8.cc Tue Oct 17 12:04:00 2000
@@ -509,7 +509,7 @@ BX_CPU_C::XADD_EbGb(BxInstruction_t *i)
SET_FLAGS_OSZAPC_8(op1, op2, sum, BX_INSTR_XADD8);
#else
- bx_panic("XADD_EbGb: not supported on < 80486\n");
+ bio->panic("XADD_EbGb: not supported on < 80486\n");
#endif
}
@@ -756,6 +756,6 @@ BX_CPU_C::CMPXCHG_EbGb(BxInstruction_t *
}
#else
- bx_panic("CMPXCHG_EbGb:\n");
+ bio->panic("CMPXCHG_EbGb:\n");
#endif
}