Changeset d9f81af3 in mainline for arch/amd64/src


Ignore:
Timestamp:
2005-09-01T01:08:51Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
75d5721
Parents:
470c468
Message:

Fixed bad type in frame.c.
Amd64 prints banner.

Location:
arch/amd64/src
Files:
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/boot/memmap.S

    r470c468 rd9f81af3  
    120120
    121121e820counter:
    122         .byte 0xff
     122        .byte 0x0
    123123
    124124e820table:
    125         .space  (32*E820_RECORD_SIZE),0xff # space for 32 records, each E820_RECORD_SIZE bytes long
     125        .space  (32*E820_RECORD_SIZE),0x0 # space for 32 records, each E820_RECORD_SIZE bytes long
  • arch/amd64/src/dummy.s

    r470c468 rd9f81af3  
    3636.global cpu_sleep
    3737.global cpu_print_report
    38 .global get_memory_size
    3938.global arch_late_init
    4039.global calibrate_delay_loop
    4140.global cpu_halt
    42 .global page_arch_init
    43 .global frame_arch_init
    4441.global dummy
    4542.global rdtsc
     
    4946.global interrupt_handler_size
    5047.global interrupt_handlers
     48.global memory_print_map
     49.global get_memory_size
     50
     51get_memory_size:
     52        movq $4*1024*1024, %rax
     53        ret
    5154
    5255interrupt_handler_size:
     
    6164cpu_sleep:
    6265cpu_print_report:
    63 get_memory_size:
    6466arch_late_init:
    6567calibrate_delay_loop:
    6668cpu_halt:
    67 page_arch_init:
    68 frame_arch_init:
    6969reset_TS_flag:
    70 fpu_init:       
     70fpu_init:
     71memory_print_map:       
    7172       
    7273dummy:
  • arch/amd64/src/mm/page.c

    r470c468 rd9f81af3  
    11/*
    2  * Copyright (C) 2005 Martin Decky
     2 * Copyright (C) 2001-2004 Jakub Jermar
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef __amd64_MEMORY_INIT_H__
    30 #define __amd64_MEMORY_INIT_H__
     29#include <mm/page.h>
     30#include <arch/mm/page.h>
    3131
    32 #include <config.h>
    33 
    34 size_t get_memory_size(void);
    35 
    36 #endif
     32void page_arch_init(void)
     33{
     34}
Note: See TracChangeset for help on using the changeset viewer.