Changeset d9f81af3 in mainline for arch/amd64/src
- Timestamp:
- 2005-09-01T01:08:51Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 75d5721
- Parents:
- 470c468
- Location:
- arch/amd64/src
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/boot/memmap.S
r470c468 rd9f81af3 120 120 121 121 e820counter: 122 .byte 0x ff122 .byte 0x0 123 123 124 124 e820table: 125 .space (32*E820_RECORD_SIZE),0x ff# space for 32 records, each E820_RECORD_SIZE bytes long125 .space (32*E820_RECORD_SIZE),0x0 # space for 32 records, each E820_RECORD_SIZE bytes long -
arch/amd64/src/dummy.s
r470c468 rd9f81af3 36 36 .global cpu_sleep 37 37 .global cpu_print_report 38 .global get_memory_size39 38 .global arch_late_init 40 39 .global calibrate_delay_loop 41 40 .global cpu_halt 42 .global page_arch_init43 .global frame_arch_init44 41 .global dummy 45 42 .global rdtsc … … 49 46 .global interrupt_handler_size 50 47 .global interrupt_handlers 48 .global memory_print_map 49 .global get_memory_size 50 51 get_memory_size: 52 movq $4*1024*1024, %rax 53 ret 51 54 52 55 interrupt_handler_size: … … 61 64 cpu_sleep: 62 65 cpu_print_report: 63 get_memory_size:64 66 arch_late_init: 65 67 calibrate_delay_loop: 66 68 cpu_halt: 67 page_arch_init:68 frame_arch_init:69 69 reset_TS_flag: 70 fpu_init: 70 fpu_init: 71 memory_print_map: 71 72 72 73 dummy: -
arch/amd64/src/mm/page.c
r470c468 rd9f81af3 1 1 /* 2 * Copyright (C) 200 5 Martin Decky2 * Copyright (C) 2001-2004 Jakub Jermar 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 #i fndef __amd64_MEMORY_INIT_H__30 # define __amd64_MEMORY_INIT_H__29 #include <mm/page.h> 30 #include <arch/mm/page.h> 31 31 32 #include <config.h> 33 34 size_t get_memory_size(void); 35 36 #endif 32 void page_arch_init(void) 33 { 34 }
Note:
See TracChangeset
for help on using the changeset viewer.