blob: b43cc720e2ff6aadab3be4f72a3c020ba76f50e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* tag: legacybios starter
*
* Copyright (C) 2003 Stefan Reinauer
*
* See the file "COPYING" for further information about
* the copyright and warranty status of this work.
*/
#include "config.h"
#include "types.h"
#define FIXED_ROMSTART 0xc0000
#define FIXED_ROMEND 0xcffff
void legacybios(ucell romstart, ucell romend);
void cmain(void)
{
legacybios(FIXED_ROMSTART,FIXED_ROMEND);
return;
}
|