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

Last change on this file since 586 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
Line 
1/*
2 * \file    : reset_utils.h
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>
11#include <reset_tty.h>
12
13extern unsigned int proctime();
14
15extern void* memcpy(void *_dst, const void *_src, unsigned int size);
16
17extern void* memset(void *_dst, const int value, unsigned int size);
18
19extern void reset_print_elf_phdr(Elf32_Phdr * elf_phdr_ptr);
20
21#endif
22
23// vim: tabstop=4 : softtabstop=4 : shiftwidth=4 : expandtab
24
Note: See TracBrowser for help on using the repository browser.