source: trunk/softs/tsar_boot/include/reset_utils.h @ 602

Last change on this file since 602 was 586, checked in by alain, 10 years ago

Modify the name "boot" to "reset" to avoid confusion
between the pre-loader and the boot-loader...
Increase the size of the segment containing the stacks.

File size: 485 bytes
RevLine 
[586]1/*
2 * \file    : reset_utils.h
[425]3 * \date    : August 2012
4 * \author  : Cesar Fuguet
5 */
6
7#ifndef BOOT_UTILS_H
8#define BOOT_UTILS_H
9
10#include <elf-types.h>
[586]11#include <reset_tty.h>
[425]12
[586]13extern unsigned int proctime();
[425]14
[586]15extern void* memcpy(void *_dst, const void *_src, unsigned int size);
[425]16
[586]17extern void* memset(void *_dst, const int value, unsigned int size);
[425]18
[586]19extern void reset_print_elf_phdr(Elf32_Phdr * elf_phdr_ptr);
[425]20
21#endif
22
23// vim: tabstop=4 : softtabstop=4 : shiftwidth=4 : expandtab
24
Note: See TracBrowser for help on using the repository browser.