⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crt0_ram.s

📁 linux内核源码
💻 S
字号:
/* *  linux/arch/h8300/platform/h8300h/h8max/crt0_ram.S * *  Yoshinori Sato <ysato@users.sourceforge.jp> * *  Platform depend startup *  Target Archtecture:	H8MAX *  Memory Layout     :	RAM */#define ASSEMBLY#include <asm/linkage.h>	#if !defined(CONFIG_BLKDEV_RESERVE)#if defined(CONFIG_GDB_DEBUG)#define RAMEND (__ramend - 0xc000)#else#define RAMEND __ramend#endif#else#define RAMEND CONFIG_BLKDEV_RESERVE_ADDRESS#endif		.global SYMBOL_NAME(_start)	.global SYMBOL_NAME(command_line)	.global SYMBOL_NAME(_platform_gpio_table)	.global SYMBOL_NAME(_target_name)		.h8300h	.section .text	.file	"crt0_ram.S"	/* CPU Reset entry */SYMBOL_NAME_LABEL(_start)	mov.l	#RAMEND,sp	ldc	#0x80,ccr	/* Peripheral Setup */	#if defined(CONFIG_MTD_UCLINUX)	/* move romfs image */	jsr	@__move_romfs	#endif		/* .bss clear */	mov.l	#__sbss,er5	mov.l	#__ebss,er4	sub.l	er5,er4	shlr	er4	shlr	er4	sub.l	er0,er01:		mov.l	er0,@er5	adds	#4,er5	dec.l	#1,er4	bne	1b	/* copy kernel commandline */	mov.l	#COMMAND_START,er5	mov.l	#SYMBOL_NAME(command_line),er6	mov.w	#512,r4	eepmov.w	/* uClinux kernel start */	ldc	#0x90,ccr	/* running kernel */	mov.l	#SYMBOL_NAME(init_thread_union),sp	add.l	#0x2000,sp	jsr	@_start_kernel_exit:	jmp	_exit	rts	/* I/O port assign information */__platform_gpio_table:		mov.l	#gpio_table,er0	rtsgpio_table:	;; P1DDR	.byte	0xff,0xff	;; P2DDR	.byte	0xff,0xff	;; P3DDR	.byte	0x00,0x00	;; P4DDR	.byte	0x00,0x00	;; P5DDR	.byte	0x01,0x01	;; P6DDR	.byte	0xf6,0xf6	;; dummy	.byte	0x00,0x00	;; P8DDR	.byte	0xee,0xee	;; P9DDR	.byte	0x00,0x00	;; PADDR	.byte	0x00,0x00	;; PBDDR	.byte	0x30,0x30__target_name:		.asciz	"H8MAX"		.section .bootvec,"ax"	jmp	@SYMBOL_NAME(_start)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -