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

📄 sect30.inc

📁 M16C interrupt settings and Initial code setting for HEW4 for renesas M16c...I coded and optimized.
💻 INC
字号:
;/**************************************************************************/
;/**************************************************************************/
;/****************** Renesas Technology Europe GmbH ************************/
;/**************************************************************************/
;/**************************************************************************/
;/*  DISCLAIMER:                                                           */
;/*  We (Renesas Technology Europe GmbH) do not warrant that the Software  */
;/*  is free from claims by a third party of copyright, patent, trademark, */
;/*  trade secret or any other intellectual property infringement.         */
;/*                                                                        */
;/*  Under no circumstances are we liable for any of the following:        */
;/*                                                                        */
;/*  1. third-party claims against you for losses or damages;              */
;/*  2. loss of, or damage to, your records or data; or                    */
;/*  3. economic consequential damages (including lost profits or          */
;/*     savings) or incidental damages, even if we are informed of         */
;/*     their possibility.                                                 */
;/*                                                                        */
;/*  We do not warrant uninterrupted or error free operation of the        */
;/*  Software. We have no obligation to provide service, defect            */
;/*  correction, or any maintenance for the Software. We have no           */
;/*  obligation to supply any Software updates or enhancements to you      */
;/*  even if such are or later become available.                           */
;/*                                                                        */
;/*  IF YOU DOWNLOAD OR USE THIS SOFTWARE YOU AGREE TO THESE TERMS.        */
;/*                                                                        */
;/*  THERE ARE NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING THE            */
;/*  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A               */
;/*  PARTICULAR PURPOSE.                                                   */
;*******************************************************************************
;
; C Compiler for R8C/Tiny, M16C/60,30,20,10
; COPYRIGHT(C) 1999(2000-2002) RENESAS TECHNOLOGY CORPORATION
; AND RENESAS SOLUTIONS CORPORATION ALL RIGHTS RESERVED
;
;
; Written by T.Aoyama
;
; sect30.inc     : section definition
; This program is applicable when using the basic I/O library
;
; $Id: sect30.inc,v 1.22 2004/02/16 05:17:14 muranaka Exp $
;
;******************************************************************************
;
;	for M16C/62p by cool
;
;---------------------------------------------------------------
;
; 	Arrangement of section
;
;---------------------------------------------------------------
; Near RAM data area
;---------------------------------------------------------------
; SBDATA area
	.section	data_SE,DATA
	.org	400H
data_SE_top:

	.section	bss_SE,DATA,ALIGN
bss_SE_top:

	.section	data_SO,DATA
data_SO_top:

	.section	bss_SO,DATA
bss_SO_top:

; near RAM area
	.section	data_NE,DATA,ALIGN
data_NE_top:

	.section	bss_NE,DATA,ALIGN
bss_NE_top:

	.section	data_NO,DATA
data_NO_top:

	.section	bss_NO,DATA
bss_NO_top:

;---------------------------------------------------------------
; Stack area
;---------------------------------------------------------------
	.section	stack,DATA
	.blkb	STACKSIZE
stack_top:

	.blkb	ISTACKSIZE
istack_top:

;---------------------------------------------------------------
;	heap section  sel鐄kta iptal
;---------------------------------------------------------------
;	.section	heap,DATA
;heap_top:
;	.blkb	HEAPSIZE

;---------------------------------------------------------------
; Near ROM data area
;---------------------------------------------------------------
	.section	rom_NE,ROMDATA,ALIGN
rom_NE_top:

	.section	rom_NO,ROMDATA
rom_NO_top:

;---------------------------------------------------------------
; Far RAM data area.... ext ram area...cool
;---------------------------------------------------------------
; If the M16C/62P is used in single chip mode, turn following lines
; into comments...
;
	.section	data_FE,DATA
	.org		30000H	                        ;/CS0 area..its stared 30000H
data_FE_top:

	.section	bss_FE,DATA,ALIGN
bss_FE_top:
 
	.section	data_FO,DATA
data_FO_top:
 
	.section	bss_FO,DATA
bss_FO_top:
;---------------------------------------------------------------
;	heap section				;//Sel鐄k
;---------------------------------------------------------------
	.section	heap,DATA
	.org	030000H + 10000h					;30000h+10000h ilk 64k heap ba

⌨️ 快捷键说明

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