Bryce Denney
4ec5b4a967
- add UINT ReadTimeOut to the ADAPTER struct, reported by
...
Mike Lerwill <Mike@ml-solutions.co.uk>
- at the moment we only use hFile so the other pieces of the ADAPTER struct
don't affect how this code turns out. However, it would be safer to include
the winpcap header file instead of hardcoding the structures, which are bound
to change over time.
2002-03-08 16:37:01 +00:00
Bryce Denney
0beda7ae26
- add instructions for setting up DLX linux for networking
2002-03-08 09:43:57 +00:00
Bryce Denney
6b11183d70
- the check for "auto transmit disable" was checking the wrong bit.
...
We should really be using #defines or enums to give these constants
a proper name! Thanks to Peter Tattam <peter@jazz-1.trumpet.com.au>
for the bug report.
2002-03-08 08:33:37 +00:00
Bryce Denney
bef9401a16
- fix the check for socklen_t. It is never defined unless you include
...
sys/socket.h, duh.
2002-03-08 05:45:51 +00:00
Bryce Denney
9b03cd05e5
- update
2002-03-08 04:47:59 +00:00
Bryce Denney
32b78ee896
- mention "default gui" down at the bottom near where it says what
...
the gui will really be. I was afraid people would get confused
if the default gui doesn't match the gui they asked for. Now they
will see both the default gui and the one that was actually chosen.
Not a big deal.
2002-03-08 04:47:33 +00:00
Bryce Denney
41767f5a5f
- add configure check for socklen_t, define as int if not already there.
2002-03-08 04:45:00 +00:00
Bryce Denney
baa70c351e
*** empty log message ***
2002-03-07 16:00:40 +00:00
Bryce Denney
556a8fa8f8
- commit patch.check-platform. For full details, pull up the patch itself
...
and look at the description at the top. Here's an intro.
This patch makes significant changes to the configure script. It adds the
lines AC_CANONICAL_HOST and AC_CANONICAL_TARGET which detect the OS and
processor type. The configure script, knowing the OS and processor type, can
then make intelligent decisions about which CFLAGS are needed and what is the
default GUI for that platform. One of the goals of this patch is to make it
so that on all supported platforms, "configure;make" will compile cleanly.
Configure detects the target platform, but it can be overridden by using
--target=___. This is important when using one platform to generate
Makefiles and header files for another platform. See config.guess script for
the exact details of platform naming.
The defaults that are currently implemented in the modified configure script
include:
If platform is windows* or winnt*, use win32 gui.
If platform is cygwin*, use win32 gui and compile with
"-mno-cygwin -DWIN32".
If platform is macosx* or darwin*, use carbon gui and compile
with "-fpascal-strings -fno-common -arch ppc -Wno-four-char-constants
-Wno-unknown-pragmas -Dmacintosh"
If platform is macos, use macos gui.
If platform is beos, use beos gui.
If platform is amigaos, use amigaos gui.
Otherwise, use X windows gui.
2002-03-07 16:00:39 +00:00
Bryce Denney
0a8cad9653
- it doesn't make sense to have a default configuration for "x86" since
...
there are hundreds of possible OSes.
2002-03-07 15:55:11 +00:00
Bryce Denney
b9c0f4e3a0
- update testing results
2002-03-07 15:44:48 +00:00
Bryce Denney
71a7f13089
- add testing results
2002-03-07 15:33:33 +00:00
Bryce Denney
004c4e5743
- add patch header with description of what I'm doing
2002-03-07 14:55:24 +00:00
Bryce Denney
55f7ddcb4d
- I used the patch while experimenting, but it is checked in now.
2002-03-07 14:08:08 +00:00
Bryce Denney
a62ec06005
- check in revision that Psyon mailed to me March 6
2002-03-07 02:23:54 +00:00
Christophe Bothamy
681f350804
- fix for boot drive option incorrectly saved to configuration file
2002-03-06 23:31:02 +00:00
Bryce Denney
45de5a2d85
- rewrite some .conf.* files to reflect that they no longer have to
...
specify the gui if they want to accept the default.
2002-03-06 23:20:57 +00:00
Bryce Denney
a813bc223c
- add default guis for every platform, and default CFLAGS for the ones that
...
need it. The goal is that configure;make does something usable on every
platform.
2002-03-06 23:04:17 +00:00
Bryce Denney
4a976dcb0a
- add null check on devices->ioapic->untrigger_irq, suggested by
...
William Lee Irwin III <wli@holomorphy.com>
2002-03-06 21:52:16 +00:00
Bryce Denney
b385550233
- include the missing config.sub, etc. files in the patch too
2002-03-06 21:02:22 +00:00
Bryce Denney
a0640f1c32
- add std bochs header
2002-03-06 20:39:23 +00:00
Bryce Denney
70f4e7ee27
- increase max bitmaps to 32 since I was running out
...
- only do the "scancode-8" trick on linux. On windows it did exactly the
wrong thing, so I'll assume it's a bug in SDL for linux.
2002-03-06 20:38:31 +00:00
Bryce Denney
55b12f615c
- to get it running on other compilers, I removed all references to
...
iostream, vector, and the use of templates. Now the vector of bitmaps
is an array of pointers to bitmaps and a count.
2002-03-06 20:36:35 +00:00
Bryce Denney
efd408f386
- add range checking; panic if you exceed the array size.
2002-03-06 19:56:54 +00:00
Bryce Denney
df1b810f24
*** empty log message ***
2002-03-06 19:42:29 +00:00
Bryce Denney
d1692aaea8
- make configure discover the target platform so that the configure script
...
can enable/disable features according to platform.
2002-03-06 19:41:24 +00:00
Bryce Denney
dd30b8174c
- this patch removes references to iostream and vector, and replaces the
...
template with a static array with a fixed maximum size.
2002-03-06 19:36:56 +00:00
Bryce Denney
ee6b54f395
- distinguish between WIN32 the platform and WIN32 the gui library.
...
use #if defined(WIN32) to determine if you are on that platform
and #if BX_WITH_WIN32 to determine if you are using that gui.
2002-03-06 19:16:40 +00:00
Bryce Denney
efb6eeb621
- use UNIX-like code when compiling in cygwin
2002-03-06 18:17:24 +00:00
Bryce Denney
f5e8e651fe
- in cygwin when compiling with -mno-cygwin, ssize_t is not defined. So I
...
moved it outside the ifndef __MINGW32__ block.
2002-03-06 18:04:58 +00:00
Bryce Denney
4439fe5dc7
*** empty log message ***
2002-03-06 16:48:10 +00:00
Bryce Denney
170080c067
*** empty log message ***
2002-03-06 15:58:32 +00:00
Bryce Denney
7a5921fe56
- remove extra \n
2002-03-06 15:56:27 +00:00
Bryce Denney
59335a767d
- arg, I didn't mean to check in that last revision! Reverted to 1.5.
2002-03-06 15:46:16 +00:00
Bryce Denney
2c392212fc
- added more SDL details, minor tweaks
2002-03-06 15:45:09 +00:00
Bryce Denney
85dfa222b6
- begin to write changes for version 1.4. Still needs a lot of work.
2002-03-06 15:14:11 +00:00
Christophe Bothamy
11ed519a07
- Deleted a "debug" include <X11/...>
...
- BX_KEY_PRINT_SCREEN and BX_KEY_SCROLL_LOCK were defined twice
2002-03-06 14:04:42 +00:00
Christophe Bothamy
f0e762c3d2
- updated the BX_KEY_NBKEYS comment to remind to modify the bx_key_symbol of gui/keymap.cc
2002-03-06 10:55:44 +00:00
Christophe Bothamy
e931247144
- New keymap architecture.
...
The localisation is now read from keymap files
The keymap files are in gui/keymaps directory
2002-03-06 09:31:55 +00:00
Christophe Bothamy
1c0a1360bf
- cosmetic change
2002-03-06 09:19:36 +00:00
instinc
32c40d0b55
commented out the diagnostic code, no use using 10 jumps for nothing, and it will take less time to re-enable it in the future than using those if(0)
2002-03-06 01:19:50 +00:00
instinc
9d112c44c2
Kernel Panic's patch to the disassembler, it now shows displacement as the final offset rather than being a displacement and also display all hexadecimal values using capital letters.
2002-03-05 18:07:28 +00:00
Bryce Denney
d653699cd3
- add "return BX_SOUND_OUTPUT_OK;" to avoid compile error in VC++5
...
"not all control paths return a value". This was suggested in bug #523697 .
2002-03-05 17:22:59 +00:00
Bryce Denney
b74ed15539
- add a very important missing word: "NOT"
2002-03-05 17:17:50 +00:00
Bryce Denney
ee1a7e23ec
- add scancodes.cpp to the workspace
2002-03-05 16:15:41 +00:00
Bryce Denney
17e5bfc00b
- change version number to 1.4.pre1 to make a snapshot
2002-03-05 15:58:59 +00:00
Bryce Denney
637a4716c5
- this has been committed, so I'l erase it now.
2002-03-05 15:54:24 +00:00
Bryce Denney
95467fa241
- Somebody was convinced that the enter instruction with level>0 was broken,
...
and they added a panic. Apparantly this instruction is not used very often
because it went for a long time before anyone noticed. Peter Tattam started
running into the panic while emulating his OS called Petros, and through
a comparison between vmware and bochs results he believes that enter is
doing the right thing. So, I have changed the panic into a BX_ERROR for now,
and added code to ensure that it only gets printed once per bochs run.
2002-03-05 15:50:17 +00:00
Stu Grossman
6f3d73741a
Deal with systems that don't have XK_EuroSign defined.
2002-03-05 15:42:02 +00:00
Stu Grossman
3f73e3f33e
Fix receiver poll frequency to really be 100ms. This actually gives about an
...
11% speedup to the emulator when serial I/O is enabled.
2002-03-05 15:40:23 +00:00
Bryce Denney
dd90b7ab46
- add serial port options to the configuration interface, in the same
...
menu as the parallel port options.
2002-03-03 06:10:04 +00:00
Bryce Denney
0cedbb597a
- move com1 stuff down near parallel port
2002-03-03 06:05:33 +00:00
Bryce Denney
e50a1be21b
- commit serial port patch from Stu Grossman <grossman@juniper.net>
...
Here are the patches (without the serial name fix). Let me know if you want
me to change that. Oh, FYI, my changes also open up the com1 terminal in raw
mode, which makes the emulation much more accurate. You'll also notice that
I added infrastructure for com2->4 in the option parsing. I didn't add it to
the serial code, as I think a bunch of things need to be untangled before
that can work.
2002-03-03 06:03:29 +00:00
Bryce Denney
dca9d5f915
- patch already applied cleanly with patch -p0
...
- added header
2002-03-03 04:35:43 +00:00
Bryce Denney
dac42f536e
- serial patch from Stu Grossman. This is right out of an email, and I
...
expect it needs some line break cleanups.
2002-03-03 04:29:58 +00:00
Volker Ruppert
ff5a3a14e9
- the changes are checked in
2002-03-02 11:32:56 +00:00
Volker Ruppert
8e3e768922
- 'eject cd' support for linux (patch from Petr Stehlik <pstehlik@sophics.cz>)
...
- ReadCDSector() (for win32 ASPI) returns 1 if target status is okay
- win32 ASPI version of insert_cdrom() checks media status using ReadCDSector()
2002-03-02 11:31:18 +00:00
Bryce Denney
e38b1c8f7b
- the stack_return_from_v86 error is sometimes printed millions of times
...
and produces a gigantic log file. Now, after 100 times, it will no
longer print any more of this particular error.
2002-03-01 17:27:25 +00:00
Volker Ruppert
ad4808cbda
- checked in floppy timer 'idle' patch from Jeroen Janssen <japj@darius.demon.nl>
...
- just return without a panic when no floppy command is pending
2002-02-27 18:16:30 +00:00
Volker Ruppert
9f097cbf00
- cursor size feature implemented for win32
2002-02-24 17:20:19 +00:00
Volker Ruppert
6aafdccd5e
- applied patch from Dave Poirier <eks@void-core.2y.net>
...
- call lower_irq() after reading port 0x60, not port 0x64
- RETURN() macro removed
2002-02-23 09:32:49 +00:00
Bryce Denney
5b35586f82
- add patch from Petr Stehlik <pstehlik@sophics.cz> that allows
...
linux to eject the physical cd. not tested.
2002-02-22 19:43:53 +00:00
Gregory Alexander
2fbcdccb02
Added a comment on iret flag writing.
2002-02-22 05:33:36 +00:00
Gregory Alexander
055d8fa719
Fix a warning.
2002-02-21 21:16:06 +00:00
Gregory Alexander
2e632a4294
BIG fix for initial counts of zero.
2002-02-21 20:56:18 +00:00
Bryce Denney
fa29b378b4
- commit patch from Dave Poirier to fix
...
Bug #490570 : OUTB set and command 0xaa encountered
2002-02-21 20:26:48 +00:00
Gregory Alexander
eca4aa0720
Fixed the PIT gate and improved the PIT printing options.
2002-02-21 19:22:42 +00:00
Volker Ruppert
b1738bed08
- implementation of the text mode cursor in the SDL GUI
2002-02-16 20:31:35 +00:00
Gregory Alexander
29ba221c3e
Make trace output more meaningful by printing each instruction immediately
...
BEFORE it is executed. Print the registers at this time, BEFORE the
instruction, since they are the values BEFORE the instruction is executed.
The important result of this is that in TRACE output, both the instruction
causing an exception and the first instruction of the exception handler
are BOTH printed.
I'm working on getting this behavior in the debugger user-interface.
Modified Files:
cpu/cpu.cc debug/dbg_main.cc
2002-02-15 22:58:06 +00:00
Volker Ruppert
197f80bde5
- snapshot_handler() prepared for copying text to clipboard
...
- copy text to clipboard added for WIN32
2002-02-12 17:09:51 +00:00
Christophe Bothamy
7b6f19f1d2
- small bug fix in ATAPI command 0x42 (read sub-channel).
2002-02-12 16:03:00 +00:00
Volker Ruppert
790bcfc3fe
- this patch adds some PIC features
2002-02-12 11:42:57 +00:00
Volker Ruppert
e321b7bc9b
- old IRQ handling functions are disabled now
2002-02-11 08:50:28 +00:00
Volker Ruppert
c0c90e1c61
- the patch is checked in and no bug reports are present
2002-02-09 13:24:26 +00:00
Volker Ruppert
30ea11e08d
- reset function clears DMA and IRQ line
2002-02-09 13:22:43 +00:00
Gregory Alexander
cfab846fe1
More #define changes.
2002-02-08 22:27:51 +00:00
Gregory Alexander
49e715178d
More updates to the realtime PIT code.
2002-02-08 05:18:14 +00:00
Gregory Alexander
6b0dca1508
Fix using 1/4 speed.
2002-02-08 02:57:27 +00:00
Gregory Alexander
57273620e6
Added an experimental realtime PIT to the mix.
...
This is basically the opposite of the slowdown timer. Instead
of trying to keep the PIT ticks in sync with bochs time, we
keep them in sync with REAL time. This is bad because it creates
unreproducible fails, but it's good if you want to run bochs at
maximum speed on your machine. However, bochs will take all of
the available resources from the machine also.
DO NOT use this with the slowdown timer. Results would be
unpredictable.
2002-02-07 21:22:55 +00:00
Volker Ruppert
ba58065da8
- call dimension_update() only after a dimension change
...
(patch from Dave Poirier <eks@void-core.2y.net>)
2002-02-07 19:04:30 +00:00
Christophe Bothamy
716e461c9d
- enabled dword IO. Tiny performance increase
2002-02-07 17:43:06 +00:00
Bryce Denney
db0a934ae3
- move include cdrom_beos.h to top of file where it belongs
2002-02-07 17:38:33 +00:00
Bryce Denney
8fe590fb2b
- removed a dependency on /usr/include/math.h. System headers should never
...
be in the list! Oops.
2002-02-07 17:18:44 +00:00
instinc
1eccd64198
Fixes the mouse direction problem (sorry, I couldn't test locally)
...
Fixes the font switch 8x8 <-> 8x16 and clears the screen accordingly.
Known issue: the headerbar is still not displayed
2002-02-07 02:12:51 +00:00
Christophe Bothamy
6088452443
- increased speed during cdrom booting
2002-02-06 21:01:18 +00:00
Volker Ruppert
ca5a805aff
- behaviour of floppy command 'sense interrupt status' after reset fixed
...
(DLX linux boots again)
- new function raise_interrupt() sets variables and calls raise_irq()
2002-02-06 18:51:48 +00:00
Christophe Bothamy
8d7231f3db
- This version works now with Win98 bootable CD
2002-02-06 08:49:08 +00:00
Christophe Bothamy
f775660df4
- Changes for Win98 CD-ROM booting
2002-02-06 08:45:51 +00:00
instinc
12f50276e5
Removed the configuration panel width/height
...
Added FG/BG color definitions for the headerbar
2002-02-06 02:13:32 +00:00
instinc
ee181da9d3
Added required space for the control bar
...
Added control for 80x50 fonts
Added mouse input
Added mouse grabbing
Added automatic mouse grabbing when entering full screen
Added autoremoval of header when going fullscreen
Simplified a couple of graphic routines
2002-02-06 02:12:45 +00:00
instinc
61ee0ca2c3
Added mouse input + mouse/keyboard grabbing.
2002-02-05 21:39:15 +00:00
instinc
4be53d635a
Added --with-sdl
2002-02-05 19:21:59 +00:00
instinc
70055903ed
Added SDL libraries
2002-02-05 17:37:11 +00:00
instinc
96fdd89e74
added SDL libraries
2002-02-05 17:36:42 +00:00
instinc
10fd6daf08
SDL support, importing sources
2002-02-05 05:51:38 +00:00
instinc
55b2f65a1c
Header file for sdl.cc
2002-02-05 05:50:50 +00:00
Volker Ruppert
1d9861fc59
- implementation of the text mode snapshot function
2002-02-04 20:31:35 +00:00
Volker Ruppert
2d5a9bd459
- new sense key SENSE_UNIT_ATTENTION for media change
...
- set sense key and raise an interrupt after inserting cdrom media
- atapi command 'eject disk' implemented
2002-02-03 20:49:44 +00:00
Bryce Denney
cb1db03fe9
- Dean Payne sent these modifications to niclist. He said it works under
...
win2k and win95 now.
2002-02-03 06:22:21 +00:00
Bryce Denney
6ddc8128ff
- use DOS/Win format returns. not sure why it wasn't like this before.
2002-02-03 06:19:42 +00:00
Volker Ruppert
84b649831e
- new cdrom button in the headerbar
...
- changing cdrom media in a Bochs session now possible
- don't eject cdrom when the guest OS has locked the drive
2002-02-01 16:46:27 +00:00
Volker Ruppert
8a07e04cc2
- new button for inserting / ejecting cdrom (not handled yet)
2002-01-31 21:16:52 +00:00
Gregory Alexander
dcdc5b2624
Minor fix to raise/lower irq code.
2002-01-31 17:26:26 +00:00
Gregory Alexander
05983c7a48
Changes to the pit wrapper code that should help synchronization some.
2002-01-31 17:18:38 +00:00
Gregory Alexander
26e6452142
Preparing for another pit time sync upgrade.
2002-01-31 16:52:00 +00:00
Volker Ruppert
0b6ab60780
- IOAPIC calls added in functions raise_irq() and lower_irq() (untested)
2002-01-30 18:33:41 +00:00
Christophe Bothamy
ac91aa0d3c
. changes to enable El-Torito boot. It is disabled by default in rombios.c
2002-01-30 10:30:52 +00:00
Christophe Bothamy
d36bb4bdfd
. BIOS image with El-Torito boot compiled in
2002-01-30 10:27:29 +00:00
Volker Ruppert
ad072e2bc6
- implementation of the edge triggered IRQ mode
...
- new functions raise_irq() and lower_irq()
- all trigger_irq() / untrigger_irq() calls are replaced by the new functions
- REMARK: timer IRQ handling is not correct but it works
- TODO: IOAPIC IRQ handling needs to be changed
2002-01-29 17:20:12 +00:00
Volker Ruppert
2933948216
- set the media status for the siminterface to 'ejected' if cdrom is not present
2002-01-27 21:58:41 +00:00
Volker Ruppert
e472507616
- set_media_status() sets the media state for the simulation interface too
2002-01-27 21:56:53 +00:00
Volker Ruppert
accd3b2370
- runtime options menu reports the correct media status (inserted/ejected)
2002-01-27 21:55:27 +00:00
Volker Ruppert
e4516a12e8
- new PIC IRQ handling implements edge triggered mode
2002-01-27 17:00:13 +00:00
Volker Ruppert
873aa0c127
- keyboard self test reads the status register to clear IRQ line
...
- PS/2 mouse hack removed - unmask IRQ in PIC setup
- commented keyboard buffer initialisation removed
2002-01-27 09:26:23 +00:00
Volker Ruppert
856ad9f99d
- statement 'static' removed from bx_gui_c::sim_is_idle()
2002-01-27 09:24:50 +00:00
Volker Ruppert
8bf4e10948
- check for the validity of BX_USE_IDLE_HACK moved after the gui definition
2002-01-27 09:24:08 +00:00
Volker Ruppert
4ed537308c
- read access to the status registers clears the IRQs
2002-01-27 00:41:38 +00:00
Volker Ruppert
4d4be62283
- specific EOI doesn't clear the IRR bit
...
- service_master_pic() / service_slave_pic() do clear the IRR bit
- new IRQ signal handling prepared
2002-01-26 12:03:55 +00:00
Volker Ruppert
6461cb2ab9
- new IRQ signal handling prepared
2002-01-26 12:03:10 +00:00
Volker Ruppert
7aac4bfb3d
- reading status register C clears the IRQ
...
- use BX_CMOS_THIS instead of class_ptr-> (the way other devices do)
2002-01-26 10:00:08 +00:00
Volker Ruppert
81bbbd27b2
- clear DSP.irqpending only if the value of mixer register 0x82 is 0
...
- use conversion type %d for logfile (Cygwin doesn't know %i)
2002-01-25 20:31:42 +00:00
Volker Ruppert
70ac9ca440
- clear IRQ if no unmasked interrupts are pending
2002-01-25 20:31:00 +00:00
Volker Ruppert
14679e9413
- floppy hardware interrupt handler issues 'sense interrupt status' if there
...
are no result bytes to read
2002-01-24 20:32:22 +00:00
Volker Ruppert
dde7bd3a61
- CGA mode 320x200 implemented - thanks to Sebastien Béchet
...
<bechets@ifsic.univ-rennes1.fr>
2002-01-24 20:30:45 +00:00
Volker Ruppert
a373e8dc12
- software reset doesn't clear selected data rate
...
- IRQ is cleared when the result phase is complete
2002-01-23 20:23:07 +00:00
Volker Ruppert
d22d280571
- interrupt handling improved (only loopback works for now)
...
- interrupt reasons modem status change and receiver line status change added
- number of data bits is considered now
- REMARK: Windows 95 driver still makes trouble
- TODO: real serial communication, FIFO, second serial port
2002-01-20 16:35:32 +00:00
Volker Ruppert
a9c1b785f0
- when checking the presence if diskd, check the presence of diskc, too
...
- clear IRQ after reading status register 0x1f7
- unused variable 'alloc_length' removed
- some messages fixed
2002-01-20 12:38:35 +00:00
Volker Ruppert
2d48b07d80
- unnecessary BX_PANICs removed, some others changed to BX_ERROR
2002-01-20 00:28:09 +00:00
Volker Ruppert
f0937a06b9
- INT 13: number of drives is not 0 if there is only a diskd present
...
- hard_drive_post: DS must point to EBDA segment when initialising
parameters for diskd
- unmask only necessary IRQs at boot time
2002-01-20 00:25:59 +00:00
Volker Ruppert
d07f5a13ad
- new function control_HRQ() changes the state of HRQ / cascade DRQ if necessary
...
- calling control_HRQ() in function DRQ() and after a write access to DMA mask
or request register
2002-01-18 16:33:47 +00:00
Volker Ruppert
1073eaf524
- sending data to printer causes a BX_ERROR when offline
...
- untrigger_irq() seems to be necessary, so I add it again
2002-01-18 16:33:07 +00:00
Volker Ruppert
2892dbdb08
- track0 bit added to the result of the 'get status' command
...
- length of 'configure' floppy command fixed
- busy flag is set until the result of a read/write command is complete
- read/write access to unsupported address causes a BX_ERROR, not a BX_PANIC
- commented BX_INFO statements removed
2002-01-17 21:20:12 +00:00
Bryce Denney
d7ea373b90
- apparantly freebsd works with linux sound code. Now you can type
...
configure --enable-sb16=freebsd and it works according to
Jeroen Ruigrok/asmodai <asmodai@wxs.nl>
2002-01-16 19:52:28 +00:00
Volker Ruppert
8ce8b8e551
- patch is checked in
2002-01-16 16:43:57 +00:00
Volker Ruppert
6058946c09
- patch is no longer necessary
2002-01-16 16:40:37 +00:00
Volker Ruppert
ed04aff2ca
- romscan routine from plex86 BIOS integrated
2002-01-15 21:22:00 +00:00
Volker Ruppert
aa4b1dd80f
- service_slave_pic() checks the special mask of slave not master
2002-01-15 20:42:51 +00:00
Volker Ruppert
b061db9cd7
- mixer reset does not reset the IRQ/DMA settings
...
(Linux OSS driver resets the mixer after configuring IRQ/DMA)
- write timer ticks into logfile, not the localtime
2002-01-13 17:07:14 +00:00
Volker Ruppert
6d0adac941
- address decrement feature added
...
- set TC in autoinit mode too
- set mask bit on TC if not in autoinit mode
2002-01-13 17:06:33 +00:00
Volker Ruppert
c24eaf3e3c
- patch is checked in and there are no bugreports
2002-01-13 17:05:29 +00:00
Volker Ruppert
26a2731a19
- return value of MCR fixed
...
- unnecessary untrigger_irq() calls removed
2002-01-08 20:31:14 +00:00
Volker Ruppert
395ef2f5c7
- obsolete variable 'alt_pressed' removed
2002-01-08 19:00:06 +00:00
Volker Ruppert
7a7bd0779f
- version number updated
2002-01-08 18:58:47 +00:00
Bryce Denney
ed1a1e2f05
- .bochsrc said "keymap" instead of "map" which didn't match main.cc
...
(Jens Seidel)
2002-01-08 15:38:28 +00:00
Bryce Denney
d2a3364463
- clean up comment
2002-01-07 16:30:43 +00:00
Bryce Denney
4067313d38
- applied this patch
2002-01-07 16:23:13 +00:00
Bryce Denney
f94759416d
- the patch lost some spaces in transmission, so I added them back.
2002-01-07 16:22:34 +00:00
Bryce Denney
f9fce32eca
- remove broken code that deletes the "io" object. Since all logfunctions
...
objects point to the io object, it is not safe to delete the io object
as soon as the first logfunctions object is deleted. This leaves all the
other logfunctions objects with pointers to a dead object.
2002-01-07 16:10:11 +00:00
Bryce Denney
11d907e40a
- add Spanish keymap, from a patch by Vicente Hernando Ara
...
<bizenton@navegalia.com>
2002-01-07 15:50:50 +00:00
Bryce Denney
37d828e8b4
- spanish keymap patch from Vicente Hernando Ara <bizenton@navegalia.com>
2002-01-07 15:46:03 +00:00
Volker Ruppert
f9fdee7ed5
- 16-bit DMA mode fixed (VOC file output works)
2002-01-05 10:30:24 +00:00
Volker Ruppert
4b759265e9
- deassert HRQ if no DRQ is pending
...
- fixed boundary check for 16-bit DMA
- removed unnecessary comments
2002-01-05 10:28:49 +00:00
Volker Ruppert
45f11e30b2
- implementation of cascade mode (channel 4)
2002-01-02 10:00:54 +00:00
Volker Ruppert
7add6391d6
- DMA initialisation complete: unmask cascade channel
2002-01-02 09:59:32 +00:00
Volker Ruppert
e9a86dd9c8
- bx_init_hardware(): don't update the log actions if control panel is enabled
2002-01-02 09:57:58 +00:00
Volker Ruppert
17ab2fa85f
- INT 13 diskette funktion 5 uses the "format track" function of the FDC
...
- added initialisation of PIC and DMA in POST - reboot of linux works now
2002-01-01 21:39:28 +00:00
Volker Ruppert
df10d56fe4
- recognize edge/level bit in ICW1, messages updated
2001-12-31 08:38:08 +00:00
Volker Ruppert
d6a1ec5fd9
- removed unnecessary untrigger_irq() call
2001-12-31 08:36:48 +00:00
Volker Ruppert
81ec874c5d
- update log actions after reading command line or bochsrc
2001-12-29 11:40:37 +00:00
Volker Ruppert
4b68e7dcd8
- second set of changes to bochs floppy support
2001-12-28 16:39:59 +00:00
Volker Ruppert
d5b13d3131
- second set of changes to bochs floppy support.
...
* floppy command 'format track' implemented
* read and write operations with MT=0 are working now
(function 'increment_sector()' updated)
* result code of floppy command 'get status' fixed
* flag FS_MS_DIO is not set while the 'configure' floppy command is pending
2001-12-28 16:38:13 +00:00
Volker Ruppert
a8e9c246c7
- variables for 'format track' and MT=0 support added
2001-12-28 16:36:45 +00:00
Volker Ruppert
e1e51a29d9
- description completed
2001-12-27 20:54:03 +00:00
Volker Ruppert
c7d1e52217
- behaviour of some floppy commands changed
2001-12-27 09:32:54 +00:00
Volker Ruppert
328bd4fb84
- fixed the behaviour of some floppy commands (Windows 95 driver works now)
...
* diskette controller data register returns last result if no new data
is available
* reset will be activated when the reset bit is changed to normal operation
* reset sets the error bits in status register 0
* write access to port 0x3f4 will cause a BX_ERROR now
* unsupported and invalid floppy commands are setting the error status bit
'invalid command' - BX_PANIC not necessary
* flag FS_MS_DIO is not set while a floppy command is pending
* floppy command 'specify': cause a BX_ERROR when non-DMA mode is selected
* floppy command 'sense interrupt status' returns an error is no interrupt
is pending
* floppy command 'read ID' sets the 'busy' flag and returns no data if the
motor is not on
* removed SIMX86 section (not defined in bochs)
* define variable 'sTemp' for win32 only
2001-12-27 09:30:31 +00:00
Volker Ruppert
84f0593409
- added variable 'pending_irq' (needed for 'sense interrupt status'
2001-12-27 09:28:53 +00:00
Volker Ruppert
87e705a553
- implementation of transfer type 0 (verify) - dma write without writing to memory
2001-12-26 14:56:15 +00:00
Volker Ruppert
c7b6a1c58b
- int 13 floppy function 08 returns always the pointer to the param table in ROM
2001-12-26 14:53:40 +00:00
Volker Ruppert
d459745df8
- patch is checked in and no problems are reported
2001-12-26 12:33:02 +00:00
Volker Ruppert
76fd8a43f9
- keyword 'virtual' added to the destructor
2001-12-22 20:58:25 +00:00
Volker Ruppert
3492a93d8f
- write wave and midi data in binary mode
...
- adlib registers enabled (OPL emulation still not complete)
- fixed a warning in function opl_data()
- write current time into sb16 logfile
2001-12-22 13:30:10 +00:00
Christophe Bothamy
0f6a92235a
- updated keyboard with mf1, mf2 and mf3 scancodes set handling
...
- Added scancode translation table and BX_KEY to scancode table
- completed BX_KEYS list
2001-12-22 00:00:33 +00:00
Christophe Bothamy
d8d03b431c
- updated version of LGPL'd vgabios
2001-12-21 23:41:49 +00:00
Bryce Denney
cbd68598a3
- apply patch.memleaks-tominac from Darko Tominac <darko.tominac@zg.tel.hr>
...
which fixes some potential memory leaks
2001-12-21 19:33:18 +00:00
Bryce Denney
9884c923cd
- previous rev was for version 1.3. This one matches current CVS.
2001-12-21 19:28:45 +00:00
Bryce Denney
a40569fb94
- add patch from Darko Tominac <darko.tominac@zg.tel.hr>
2001-12-21 19:12:48 +00:00
Volker Ruppert
f004e340e8
- asic_write: dma write size and remote bytes fixed (thanks to Mike Lerwill)
...
- read_handler: fixed a warning
2001-12-21 11:56:52 +00:00
Volker Ruppert
ecabb60da8
- chipmem read/write limit and dma write size fixed - Windows 95 driver works now
2001-12-20 19:44:16 +00:00
Volker Ruppert
384d4f1cce
- added Windows(tm) keys to the German keymap
2001-12-19 19:15:12 +00:00
Volker Ruppert
c658faf211
- direction flag added to control port, debug messages improved
2001-12-18 21:58:59 +00:00
Volker Ruppert
868af09f14
- dma16 read/write functions added (untested)
2001-12-18 13:14:46 +00:00
Volker Ruppert
33f4ee6e35
- DMA-2 controller and dma16 read/write functions added
2001-12-18 13:12:45 +00:00
Volker Ruppert
7cd7ebeaa3
- dma 16-bit read/write functions added (untested)
2001-12-17 18:08:02 +00:00
Volker Ruppert
b3c9c1e8b1
- implementation of the DMA-2 controller (not complete)
2001-12-16 17:19:07 +00:00
Volker Ruppert
0093de1adc
- missing right control key added to german keymap
2001-12-16 17:17:16 +00:00
Volker Ruppert
16f84392c1
- the patch of Christophe Bothamy is checked in and works, so this file is obsolete
2001-12-14 22:17:56 +00:00
Christophe Bothamy
4f1b2334b2
- Deleted patch as i commited it in main code
2001-12-14 18:05:34 +00:00
Christophe Bothamy
bd7420ade5
- Added XFree86 keyboard mapping (us, fr, de)
2001-12-14 17:56:37 +00:00
Volker Ruppert
051ef5f1c9
- text mode cursur feature added for X and prepared for other GUIs
2001-12-13 18:36:29 +00:00
Volker Ruppert
5427df8b36
- fixed the vga memory read/write functions in text mode
...
- text mode cursor feature added
2001-12-13 18:34:30 +00:00
Bryce Denney
5b13f74356
- make -C isn't portable, apparantly
2001-12-13 03:05:08 +00:00
Bryce Denney
babdddd5b9
- add typecast to keep gcc happy. on openbsd it's an actual error.
2001-12-13 02:57:03 +00:00
Bryce Denney
c8e1cc0c64
- the shared library wasn't getting rebuilt because of problems in
...
top level Makefile.in
2001-12-13 02:11:15 +00:00
Bryce Denney
e866d69494
- improve comments a bit
2001-12-12 23:05:46 +00:00
Bryce Denney
9e8ae6d8ee
- first try with plugins. This connects a somewhat hacked plex86 keyboard
...
plugin to bochs.
2001-12-12 23:02:41 +00:00
Bryce Denney
e0e9d2183b
- check in a very broken floppy patch so I can work on it later
2001-12-12 21:35:07 +00:00
Volker Ruppert
12ee9dada7
- patch for the vga memory read/write functions in text mode
2001-12-12 18:35:30 +00:00
Volker Ruppert
c06b97077a
- patch updated for bochs version 1.3
2001-12-12 18:33:37 +00:00
Christophe Bothamy
70b1367dd1
. Added a keyboard_type option in configuration file
...
. Modified answer of keyboard controler to a keyboard-identify command
depending on keyboard_type
. Added the keyboard_type option in bochsrc man page
2001-12-12 10:43:36 +00:00
Christophe Bothamy
d7482737a9
. Added a keyboard_type option in the conf file
...
. Modified answer of keyboard controler to a keyboard-identify command
depending on keyboard_type
. Added the keyboard_type option in bochsrc man page
2001-12-12 10:38:39 +00:00
Christophe Bothamy
ba181fc43f
Removed after include in the main code
2001-12-12 10:34:52 +00:00
Bryce Denney
319e4fb771
- I was stupid and wrote "enable-amigaos" instead of "with-amigaos". Fixed.
2001-12-12 03:48:48 +00:00
Bryce Denney
1c985e4ee4
- fix obsolete, incorrect comment
2001-12-11 13:42:23 +00:00
Bryce Denney
8685e9f001
- update for 1.3
2001-12-10 21:53:21 +00:00
Bryce Denney
1fcf556297
- include niclist and bochsdbg (debug enabled version)
2001-12-10 21:31:20 +00:00
Bryce Denney
0e82c53d72
- add entry for 1.3
2001-12-10 19:59:10 +00:00
Bryce Denney
fd6aee20d4
- irrelevant now
2001-12-10 19:28:08 +00:00
Bryce Denney
c1befbd716
- remove patches that have been applied already
2001-12-10 19:27:48 +00:00
Bryce Denney
45b303a2c0
- another small beos change from Bernd Korz.
2001-12-10 18:37:39 +00:00
Bryce Denney
c39181a903
- add pointers to the changelog
2001-12-10 14:54:39 +00:00
Bryce Denney
d67fe98719
- eliminate top level list so that I can put <a name=""> anchors
2001-12-10 14:53:27 +00:00
Bryce Denney
d18b42640b
- update for version 1.3
...
- mention where to find the new docs, suggest people look there first
2001-12-10 14:09:03 +00:00
Bryce Denney
a82b1325bf
- mention dlx demo
2001-12-10 12:59:18 +00:00
Bryce Denney
80c824e2d5
- fix bad grammar
2001-12-10 12:46:13 +00:00
Bryce Denney
1ab6dd72f0
- select bochs as current project
2001-12-10 12:41:09 +00:00
Bryce Denney
87f226eb6d
*** empty log message ***
2001-12-08 18:09:24 +00:00
Bryce Denney
15784018db
- revert back to rev 1.12 because 1.13 introduced some potential segfaults.
...
The idea is still a nice one, so I put the changes in a patch called
patch.update-vga-on-ask, until it gets fixed.
2001-12-08 18:08:24 +00:00
Bryce Denney
1b5200782d
- add some instructions on the main menu
2001-12-08 18:06:12 +00:00
Bryce Denney
0be223b867
- I changed how to build an RPM
2001-12-08 18:05:49 +00:00
Bryce Denney
b61df36c8a
- use floating point when computing # of cylinders. The expression
...
hdsize*1024*1024/16/63/512 was prone to overflowing in 32-bit integer math.
Thanks to Henry Mohn III <animatorhmiii@netscape.net> for sending a patch.
2001-12-08 17:46:02 +00:00
Bryce Denney
761a5c16a3
- move all RPM build code into a script instead of the makefile. This is
...
an improvement because you have to do a configure before using any makefile.
It used to be "configure; make rpm" and now it's just
"./build/redhat/make-rpm".
2001-12-08 15:59:50 +00:00
Bryce Denney
ff74c51296
- install the vga font compressed. Some systems require this, but I don't
...
know which. Since all other fonts are compressed, it seems like the
standard.
2001-12-08 15:20:55 +00:00
Bryce Denney
ee70e42424
- install as vga.pcf.gz, without first copying to vga.pcf and gzipping.
...
Also, it was checking for existence of vga.pcf, even though vga.pcf.gz
was going to be installed.
2001-12-08 15:18:28 +00:00
Bryce Denney
dbf4e8d33e
- do not panic on "OUTB set and command 0xaa encountered"
2001-12-08 14:02:57 +00:00
Bryce Denney
0708c77999
- first look for a font called bochsvga, then for one called vga, then
...
panic
2001-12-08 13:42:55 +00:00
Bryce Denney
2b89beb0c6
- I separated the unzipping/configuration of dlxlinux and the installation
...
of it into pieces, so that you can unzip&configure with one prefix setting
and install with another. This should fix the dlxlinux/bochsrc.txt
pathname problem.
2001-12-08 13:18:45 +00:00
Bryce Denney
7c7386e591
- don't need to specify mandir anymore
2001-12-08 13:17:23 +00:00
Bryce Denney
f82c3f9b86
- add a little bit of beos support
2001-12-08 13:07:07 +00:00
Bryce Denney
d87b47b0df
- fix rpm build so that it uses buildroot again. The trick was to separate
...
the dlx linux install into 1) unpack and configure, and 2) copy into place.
Because they are separate, we can unpack and configure with prefix=/usr
and then copy into place with prefix=$BUILDROOT/dlxlinux.
2001-12-08 05:35:57 +00:00
Bryce Denney
d31eacc1f3
- mention raw cdrom on macosx, which was just added
2001-12-07 22:28:25 +00:00
Bryce Denney
e8bcb173e5
- detect when MacOS X cdrom code can be used: when the header file
...
"IOKit/storage/IOCDMedia.h" is available.
2001-12-07 22:18:40 +00:00
Bryce Denney
ec7b19a7fb
- applied this patch, except for system headers in iodev/Makefile.in which
...
I threw out.
2001-12-07 22:00:39 +00:00
Bryce Denney
d2bf9cb219
- add support for raw CDROM under MacOS X, from
...
Scott Brumbaugh <scottcb@gte.net>
2001-12-07 21:56:15 +00:00
Bryce Denney
6ac92c21e6
- already checked in
2001-12-07 21:52:08 +00:00
Bryce Denney
7519c69f95
- add pretty header
2001-12-07 21:50:34 +00:00
Bryce Denney
c326012ae9
- add cdrom support for macos x
2001-12-07 21:48:46 +00:00
Bryce Denney
a73a6c4e18
- include Marton Fabo's keyboard capture filter for BeOS
2001-12-07 19:42:18 +00:00
Bryce Denney
339ec6cec4
- Marton Fabo <morton@eik.bme.hu> did a rewrite of the BeOS GUI.
2001-12-07 19:22:54 +00:00
Bryce Denney
5ef3f7ca45
- add BeOS specific code from Bernd Korz
2001-12-07 18:58:24 +00:00
Bryce Denney
5ecac72065
- patch from Bernd Korz, dealing with mouse cursor enable
2001-12-07 18:52:24 +00:00
Bryce Denney
706f0629f8
- Bernd's configure seems to want both cdrom.o and cdrom_beos.o, though I'm
...
not sure it's required.
2001-12-07 18:51:29 +00:00
Bryce Denney
b5ba75b30a
- this patch was made from Harry Mohn's modified bximage.c from November 25.
2001-12-07 05:21:18 +00:00
Bryce Denney
6c2486db83
- ask user if they WANT to unpack a 10meg file in their home directory.
...
If no, just quit.
2001-12-07 05:03:53 +00:00
Bryce Denney
2186b23ead
- remove "gotcha" about root owning the dlxlinux image
2001-12-06 05:15:07 +00:00
Bryce Denney
a1a9beac3b
- update to rombios.c version 1.25
2001-12-06 04:50:08 +00:00
Bryce Denney
057df9bcde
- compile SMP bioses for the first time since June!
2001-12-06 04:28:30 +00:00
Bryce Denney
f97c8b7b27
- install man pages in /usr/man/man1, not /usr/bochs/man/man1. Putting them
...
under /usr/bochs was just a hack so that I didn't have to list the individual
man pages in the file list. But nobody would find the man pages in
/usr/bochs/man unless they changed their manpath.
2001-12-06 04:03:34 +00:00
Bryce Denney
37256e9614
- touch up, move things around
2001-12-06 03:51:55 +00:00
Bryce Denney
b0a578eaf4
- made it through the whole cvs log, whew!
2001-12-05 22:12:59 +00:00
Volker Ruppert
014687aa97
- extended keyboard funktion waits for a key, too - don't panic
2001-12-05 20:38:32 +00:00
Volker Ruppert
aa297204b0
- setting led status works even if the keyboard is disabled
2001-12-05 20:36:03 +00:00
Bryce Denney
f61507194a
- clarify RPM build description
2001-12-05 20:16:09 +00:00
Bryce Denney
c9740ebb21
- I'm working on change log for version 1.3. Not complete yet.
2001-12-05 17:37:08 +00:00
Bryce Denney
5fcb69ca3a
- to allow configure to be run from other directories, I added some
...
mkdirs for build and build/linux. This was working, but then broke
when I made configure substitute the version number in lots of new
files.
2001-12-05 16:46:00 +00:00
Bryce Denney
2cd62e75c8
- Dave enabled the E9 hack in config.h.in, but it had no effect. The correct
...
way is to make the configure.in default to turning it on. The value in
config.h.in will be replaced by configure anyway.
2001-12-05 16:25:24 +00:00
Bryce Denney
9aa771c8bf
- check in changes from Rob Lemley, sent to me on November 28, 2001
2001-12-05 04:45:51 +00:00
Bryce Denney
0bbe088d56
- add beos cdrom .o file, when beos and cdrom are selected. I don't
...
have the actual cdrom_beos.cc file yet from Bernd.
2001-12-05 03:37:08 +00:00
Bryce Denney
61bae62a08
- keyboard type patch from cbothamy
2001-12-04 18:04:27 +00:00
Bryce Denney
9c79a25e8f
- add keyboard mapping patch from Christophe Bothamy
2001-12-03 15:39:51 +00:00
Volker Ruppert
a7823c0720
- improvement for the textmode cursor (X and win32)
2001-12-02 16:45:55 +00:00
Bryce Denney
fe6d4c8d88
- once it's gzipped, chmod needed a different name (+ .gz)
2001-12-02 04:24:11 +00:00
Bryce Denney
dbd75fc354
- gzip the font file, which apparantly is required on some servers.
...
See [ #485008 ] install-x11-fonts needs to gzip the font.
This was reported and checked out by ron@ronheron.com .
2001-12-02 04:20:34 +00:00
Bryce Denney
1e46afa918
- Dave applied these patches
2001-12-02 04:16:16 +00:00
instinc
3bd36d7220
added the trace-reg-on and trace-reg-off commands
2001-11-28 18:40:02 +00:00
instinc
2be059ee4f
added the trace-reg-on and trace-reg-off command
2001-11-28 18:39:19 +00:00
instinc
170eed5b66
added the trace-reg-on and trace-reg-off command
...
updated the register trace to bypass the lazy flags behaviour
2001-11-28 18:38:32 +00:00
instinc
0a87115340
added trace-reg-on and trace-reg-off commands
2001-11-28 18:37:12 +00:00
Bryce Denney
22de9ce18e
- patch from Dave Poirier, sent to list Nov 27
2001-11-28 18:19:21 +00:00
Bryce Denney
c95bdd6a35
- patch from Dave Poirier, sent to list Nov 27
2001-11-28 18:13:30 +00:00
Bryce Denney
6a03773831
- I've had several reports of how to reproduce the 'slave OCW3 not implemented'
...
condition, so I've removed it now.
2001-11-27 18:15:39 +00:00
Volker Ruppert
e8ae65d473
- move the #ifdef statement after the BX_KEY_RELEASED definition
2001-11-27 09:51:37 +00:00
Volker Ruppert
6e28bf9738
- patch for international keyboard support based on patch.kbd-dieter
2001-11-26 21:30:49 +00:00
Volker Ruppert
2102016517
- MF-II identification and some missing keys added
2001-11-26 09:55:30 +00:00
Volker Ruppert
b15f487153
- some missing BX_KEY definitions added
2001-11-26 09:54:12 +00:00
Volker Ruppert
db4401adb8
- serial functions added, MF-II keyboard functions added, parport updates
2001-11-26 07:26:55 +00:00
Volker Ruppert
840ee719e5
- exchange the scancode of "Numlock" and "Pause", numlock works again
2001-11-26 07:24:16 +00:00
Volker Ruppert
74541540e9
- event handler recognizes the extended keycode flag
2001-11-23 18:03:23 +00:00
Bryce Denney
67fb4242e4
- latest attempt at putting buildroot back into the rpm spec file.
...
Still failing.
2001-11-21 04:13:05 +00:00
Bryce Denney
26b2c0254c
- this revision is based on a patch from Cliff Hones <cliff@aonix.co.uk>.
...
Cliff added to bios_printf the ability to print onto the console. Bryce made
some further changes. Now when a panic occurs, the message is reported both
to the Bochs log file and to the screen, and then it goes into an infinite
busy loop. Why an inf loop? If I do a HLT in BIOS code, current bochs
versions will panic immediately and the user will never see the real panic
message. I have mostly tested the new panic behavior by booting nonbootable
and nonreadable disks.
2001-11-21 02:33:05 +00:00
Bryce Denney
21e102208d
- add instructions for getting CDROM to work in DOS
2001-11-21 02:13:47 +00:00
Bryce Denney
003f8dc7e0
- update vga screen when you enter the logfunctions::ask() function. This is
...
useful because sometimes useful messages are printed on the screen just
before a panic. It's also potentially dangerous if the vga update function
calls ask() again...so I added a re-entry check.
2001-11-21 00:25:15 +00:00
Bryce Denney
f003961953
- explictly turn off readline. Then if you add --enable-debugger, it will
...
not try to use readline, even when the configure system is able to find it.
2001-11-21 00:16:17 +00:00
Bryce Denney
c10e29e402
- mkfontdir was running in the wrong directory. Added "/misc" to the path.
2001-11-20 05:57:18 +00:00
Bryce Denney
5820c9de92
- this patch is from Dieter Mittelmaier <dieter.mittelmaier@freenet.de>
...
He sent it to me on July 4, and I've been far too slow getting it
checked in.
2001-11-19 18:36:35 +00:00
Bryce Denney
c7e0891d57
- I applied this patch.
...
The master PIC ignores commands 0xc0-0xc7. This change just makes the slave
PIC ignore these same commands. It does not implement the commands.
2001-11-19 14:42:25 +00:00
Bryce Denney
e5a992a796
- master PIC ignores commands 0xc0-0xc7. This change just makes the slave
...
PIC ignore these same commands. It does not implement the commands.
2001-11-19 14:41:03 +00:00
Bryce Denney
a17559cd15
- add pic fix patch from Jonathan Hunt <jhuntnz@users.sourceforge.net>
2001-11-19 14:38:48 +00:00
Bryce Denney
1e6aecc86a
- add example line in bochsrc that will use Christophe Bothamy LGPL vga bios.
...
It is commented out so that it doesn't conflict with the Elpin bios line.
2001-11-19 14:36:26 +00:00
Bryce Denney
77cdb18620
- add LGPL bios by Christophe Bothamy <cbbochs@free.fr>. When new versions
...
are released, I will remove VGABIOS-cbothamy-0.2a and add a file with
the other version number. I decided not to use the "-latest" naming
scheme because there is no synchronization between bochs releases and
LGPL VGA BIOS releases. Anything that's called "latest" is bound to
go obsolete eventually.
2001-11-19 14:35:05 +00:00
Bryce Denney
90320590ad
- oops I forgot --with-amigaos.
2001-11-19 04:17:47 +00:00
Bryce Denney
c37e0c9ba2
- hacked this patch a bit. I've been mostly testing the new code by
...
booting nonbootable and nonreadable floppy disks.
2001-11-18 16:56:52 +00:00
Bryce Denney
fad446ef63
- fix bug I created in rev 1.15 which caused all boot problems to be
...
reported as "not a bootable disk" even if it was "not a readable disk".
2001-11-18 16:40:26 +00:00
Bryce Denney
976e0b67d9
- clarify panic message. It panics if HLT is executed from segment 0xf000,
...
in other words from ROM BIOS code.
2001-11-18 16:32:40 +00:00
Volker Ruppert
0e87d7cfdc
- the patch is checked in, but PCI is still incomplete
2001-11-18 13:34:42 +00:00
Bryce Denney
5dffdf207b
- add patch from Cliff Hones. he says it doesn't quite work, but I asked
...
for it anyway.
2001-11-18 06:31:56 +00:00
Bryce Denney
c5df95c4c1
- mention 1.3, but there is no changelog yet
2001-11-18 05:07:39 +00:00
Bryce Denney
dd1b64b5cb
- don't make all on install_win32 target, since the makefile is built for
...
nmake and the install_win32 target is intended for cygwin.
- work around some bug with unix2dos that doesn't let it read from
absolute path (?)
2001-11-18 02:32:59 +00:00
Bryce Denney
32d888e7e6
- update for 1.3.pre1
2001-11-18 01:44:39 +00:00
Bryce Denney
8a00171179
- checked in cmpxchg8b patch from Michael Hohmuth <hohmuth@innocent.com>
2001-11-17 22:22:03 +00:00
Bryce Denney
75f5d636ca
- use chmod and be sure that the vga.pcf font is installed so that it
...
is readable by all
2001-11-17 22:13:38 +00:00