65363da25e
Tree structure: - sys/arch/sh3: sh3 generic code As commented, in-chip device drivers are put into sys/arch/sh3/dev. - sys/arch/evbsh3: sh3 evaluation boards (pure sh3 CPU, no fancy external HW) - sys/arch/mmeye: Brains mmEye, www.brains.co.jp MI source code includes couple of #ifdef for sh3-coff support. (sh3 uses coff or elf) Needs some more improvements, especialy in sys/arch/sh3/conf/files.sh3, to compile the tree (due to last minute tree structure change).
11 lines
297 B
C
11 lines
297 B
C
/* $NetBSD: sh3.h,v 1.1 1999/09/13 10:30:43 itojun Exp $ */
|
|
#ifndef _EVBSH3_SH3_H_
|
|
#define _EVBSH3_SH3_H_
|
|
|
|
/* following definitions are depend on our evbsh3 arch */
|
|
/* evbsh3 memory map defienitions */
|
|
#define IOM_RAM_BEGIN 0x8c000000
|
|
#define IOM_ROM_BEGIN 0x80000000
|
|
|
|
#endif /* _EVBSH3_SH3_H_ */
|