More cleanups. Lowercased all BIOS ROM filenames. Added ISA Cirrus-Logic to the video card table.

This commit is contained in:
waltje
2017-11-01 01:51:19 -05:00
parent bfe038ded9
commit 0565bf76af
31 changed files with 587 additions and 505 deletions

View File

@@ -8,7 +8,7 @@
*
* Main emulator module where most things are controlled.
*
* Version: @(#)pc.c 1.0.37 2017/10/28
* Version: @(#)pc.c 1.0.38 2017/10/30
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -611,6 +611,19 @@ pc_send_cae(void)
}
/* Send the machine a Control-Alt-Break sequence. */
void
pc_send_cab(void)
{
pc_keyboard_send(29); /* Ctrl key pressed */
pc_keyboard_send(56); /* Alt key pressed */
pc_keyboard_send(1); /* Esc key pressed */
pc_keyboard_send(157); /* Ctrl key released */
pc_keyboard_send(184); /* Alt key released */
pc_keyboard_send(129); /* Esc key released */
}
void
pc_reset_hard_close(void)
{