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

📄 bw0_send.cmd

📁 5509的代码程序
💻 CMD
字号:
-stack 0x1000	/*了解各种命令*/  
-sysstack 0x1000/*此处定义数据堆栈及系统堆栈的大小*/
MEMORY
{
	PAGE 0:
		MMR		 :	origin=0x000000 ,	length=0xbf	   /* MMR:0-->0x5f*/
		SPRAM	 :	origin=0x0000c0 , 	length=0x40    /* not use */
		VECS	 :	origin=0x000100 ,	length=0x200   /* vectors 512-byte*/
		VARSRAM0 :  origin=0x000300 ,   length=0xfd00  /* 63k DARAM const_table  64768-byte*/
		DATARAM  :	origin=0x010100 ,	length=0x1ff00 /* 128kDARAM */
		/*VARSRAM1 :  origin=0x020100 ,   length=0x0ff00 /*64k SRAM */
		PROGRAM	 :	origin=0x030100 ,	length=0x0ff00 /* 64k SARAM */
}

SECTIONS
{	
    .text		:	{}>	PROGRAM PAGE 0
	/* Small Memory Model:the following sections must all fit   */
	/* within a single page of memory that is 64K words in size.*/
	.data       :   {}>	DATARAM  PAGE 0
	.bss        :   {}>	DATARAM  PAGE 0
	.const		:	{}>	DATARAM  PAGE 0	
	.sysmem		:	{}>	DATARAM  PAGE 0
	.stack		:	{}>	DATARAM  PAGE 0
	.sysstack   :   {}>	DATARAM  PAGE 0
	.cio        :   {}>	DATARAM  PAGE 0	
	
	
	 
	.switch 	:	{}>	DATARAM  PAGE 0	
	.cinit		:	{}>	PROGRAM  PAGE 0
	.pint		:	{}>	PROGRAM  PAGE 0
	
    vectors  	:	{}>	VECS	 PAGE 0
	constables  :   {}> VARSRAM0 PAGE 0 /*Store the tables and const*/
	/*varsM       :   {}> VARSRAM1 PAGE 0 /*Store the Uninitialized vars*/
}



⌨️ 快捷键说明

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