mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[NTVDM]
Code formatting only. svn path=/branches/ntvdm/; revision=59660
This commit is contained in:
parent
5bc19fdbfb
commit
454fade2ac
4 changed files with 2 additions and 5 deletions
|
@ -326,9 +326,9 @@ BOOLEAN BiosSetVideoPage(BYTE PageNumber)
|
|||
|
||||
/* Set the start address in the CRTC */
|
||||
VgaWritePort(VGA_CRTC_INDEX, VGA_CRTC_CURSOR_LOC_LOW_REG);
|
||||
VgaWritePort(VGA_CRTC_DATA, LOBYTE(Bda->VideoPageOffset));
|
||||
VgaWritePort(VGA_CRTC_DATA , LOBYTE(Bda->VideoPageOffset));
|
||||
VgaWritePort(VGA_CRTC_INDEX, VGA_CRTC_CURSOR_LOC_HIGH_REG);
|
||||
VgaWritePort(VGA_CRTC_DATA, HIBYTE(Bda->VideoPageOffset));
|
||||
VgaWritePort(VGA_CRTC_DATA , HIBYTE(Bda->VideoPageOffset));
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
/* INCLUDES *******************************************************************/
|
||||
|
||||
#include <windows.h>
|
||||
#include <tchar.h>
|
||||
#include <stdio.h>
|
||||
#include <conio.h>
|
||||
#include <stdarg.h>
|
||||
|
|
|
@ -312,4 +312,3 @@ Cleanup:
|
|||
}
|
||||
|
||||
/* EOF */
|
||||
|
||||
|
|
|
@ -234,4 +234,3 @@ VOID PitDecrementCount()
|
|||
}
|
||||
|
||||
/* EOF */
|
||||
|
||||
|
|
Loading…
Reference in a new issue