1/*
2** Copyright 2001, Travis Geiselbrecht. All rights reserved.
3** Distributed under the terms of the NewOS License.
4*/
5#ifndef _SH4_STAGE2_H
6#define _SH4_STAGE2_H
7
8#include <boot/stage2_struct.h>
9
10#include <arch/sh4/vcpu_struct.h>
11
12// kernel args
13typedef struct {
14	// architecture specific
15	vcpu_struct *vcpu;
16} arch_kernel_args;
17
18#endif
19
20