Changeset e32e092 in mainline for kernel/arch/ia64/src
- Timestamp:
- 2008-06-06T07:34:21Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eb1c0a3
- Parents:
- 40257f5
- Location:
- kernel/arch/ia64/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/drivers/ega.c
r40257f5 re32e092 72 72 * Clear the screen. 73 73 */ 74 _memsetw( (uintptr_t)videoram, SCREEN, 0x0720);74 _memsetw(videoram, SCREEN, 0x0720); 75 75 76 76 chardev_initialize("ega_out", &ega_console, &ega_ops); … … 103 103 104 104 memcpy((void *) videoram, (void *) (videoram + ROW * 2), (SCREEN - ROW) * 2); 105 _memsetw( (uintptr_t) (videoram + (SCREEN - ROW) * 2), ROW, 0x0720);105 _memsetw(videoram + (SCREEN - ROW) * 2, ROW, 0x0720); 106 106 ega_cursor = ega_cursor - ROW; 107 107 } -
kernel/arch/ia64/src/mm/vhpt.c
r40257f5 re32e092 82 82 void vhpt_invalidate_all() 83 83 { 84 memsetb( (uintptr_t)vhpt_base, 1 << VHPT_WIDTH, 0);84 memsetb(vhpt_base, 1 << VHPT_WIDTH, 0); 85 85 } 86 86
Note:
See TracChangeset
for help on using the changeset viewer.