Changeset ba18512 in mainline for arch/ia32/src
- Timestamp:
- 2005-08-30T21:33:09Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b524f816
- Parents:
- fa0dfaf
- Location:
- arch/ia32/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/asm.S
rfa0dfaf rba18512 259 259 # 260 260 # Copy a given number of bytes (3rd argument) 261 # from the memory location defined by 1stargument262 # to the memory location defined by 2ndargument.261 # from the memory location defined by 2nd argument 262 # to the memory location defined by 1st argument. 263 263 # The memory areas cannot overlap. 264 264 # -
arch/ia32/src/drivers/ega.c
rfa0dfaf rba18512 74 74 return; 75 75 76 memcopy((void *)PA2KA(VIDEORAM),(void *) PA2KA(VIDEORAM) + ROW*2, (SCREEN - ROW)*2); //swaped76 memcopy((void *)PA2KA(VIDEORAM),(void *)(PA2KA(VIDEORAM) + ROW*2), (SCREEN - ROW)*2); //swaped 77 77 memsetw(PA2KA(VIDEORAM) + (SCREEN - ROW)*2, ROW, 0x0720); 78 78 ega_cursor = ega_cursor - ROW; -
arch/ia32/src/smp/mps.c
rfa0dfaf rba18512 313 313 #ifdef MPSCT_VERBOSE 314 314 char buf[7]; 315 memcopy(( __address) bus->bus_type, (__address) buf, 6);315 memcopy((void *) buf, (void *) bus->bus_type, 6); 316 316 buf[6] = 0; 317 317 printf("bus%d: %s\n", bus->bus_id, buf);
Note:
See TracChangeset
for help on using the changeset viewer.