fill.s

来自「LPC based lcd interface」· S 代码 · 共 48 行

S
48
字号
/*
------------------------------------------------------------------------------
-    ATMEL Microcontroller Software Support  -   ROUSSET -
------------------------------------------------------------------------------
 The software is delivered "AS IS" without warranty or condition of any
 kind, either express, implied or statutory. This includes without
 limitation any warranty or condition with respect to merchantability or
 fitness for any particular purpose, or against the infringements of
 intellectual property rights of others.
-----------------------------------------------------------------------------
- File source          : fill.s
- Object               : Assembler Watch Dog Interrupt Handler.
- Translator           : ARM Software Development Toolkit V2.11a
-
- Imported Resources   : none
- Exported Resources   : main
-
- 1.0 JCZ 21/10/97     : Creation
------------------------------------------------------------------------------
*/
/*            AREA        Asm, CODE, READONLY, INTERWORK*/

/*-------------------------- List of Included Files --------------------------- */
/* None */

/*------------------------ List of constants and types ------------------------*/
/* None */

/*------------------------ List of Imported resources ------------------------- */
/* None */

/*------------------------ List of Internal resources ------------------------- */
/* None */

/*------------------------ List of Exported resources -------------------------*/
	    .global      MainApplication
MainApplication:
/*
.equ	SIZE,4096        ; size in bytes
            GBLA        size
            WHILE       (size<SIZE)
            DCD         0x55555555
size        SETA        size+4
            WEND

*/

⌨️ 快捷键说明

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