blob: 1d8aa92fe80437a60234d06264b5840da11cb3f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2025, Kuan-Wei Chiu <[email protected]>
*/
#ifndef __QEMU_M68K_H
#define __QEMU_M68K_H
/* Memory Configuration */
#define CFG_SYS_SDRAM_BASE 0x00000000
/*
* Initial Stack Pointer:
* Place the stack at 4MB offset to avoid overwriting U-Boot code/data.
*/
#define CFG_SYS_INIT_SP_ADDR (CFG_SYS_SDRAM_BASE + 0x400000)
#endif /* __QEMU_M68K_H */
|