Changeset 37bb9bf in rtems
- Timestamp:
- 08/14/02 22:43:10 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a681285
- Parents:
- 2129ac8
- Location:
- c/src/lib/libbsp/i386/pc386
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/i386/pc386/ChangeLog
r2129ac8 r37bb9bf 1 2002-08-14 Joel Sherrill <joel@OARcorp.com> 2 3 * start/start16.S: Per PR259, added code to test for video present 4 before touching the adapter. Eric Norum <eric.norum@usask.ca> 5 tested this patch. 6 1 7 2002-08-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/lib/libbsp/i386/pc386/start/start16.S
r2129ac8 r37bb9bf 55 55 #if defined(RTEMS_VIDEO_80x50) 56 56 57 movl $0x0040,%eax # use 32 bit constant to ensure 16 MSB=0 58 mov %ax,%es 59 movw %es:0x4a, %ax # get 16 bit number of columns 60 cmpw $0, %ax # or 0 if no video adapter 61 je 1f # if no video, skip touching it 57 62 /*---------------------------------------------------------------------+ 58 63 | Switch VGA video to 80 lines x 50 columns mode. Has to be done before … … 72 77 int $0x10 73 78 79 +1: 74 80 #endif /* RTEMS_VIDEO_80x50 */ 75 81
Note: See TracChangeset
for help on using the changeset viewer.