vectors.asm

来自「2407例程.rar」· 汇编 代码 · 共 45 行

ASM
45
字号
* file:    vector.asm                       
* file     defines interrupt vector labels  

 	.include  "x240x.h"     
    .title "vectors.asm"
    .global _c_int0    
    .global _nothing
	
	.sect ".vectors"    
	
reset  	b  _c_int0
int1	b  _nothing
int2	b  _nothing
int3	b  _nothing
int4	b  _nothing
int5	b  _nothing
int6	b  _nothing
INT7:     B    _nothing
INT8:     B    _nothing
INT9:     B    _nothing
INT10:    B    _nothing
INT11:    B    _nothing
INT12:    B    _nothing
INT13:    B    _nothing
INT14:    B    _nothing
INT15:    B    _nothing
INT16:    B    _nothing
TRAP:     B    _nothing
NMI:      B    _nothing
INT19:    B    _nothing
INT20:    B    _nothing
INT21:    B    _nothing
INT22:    B    _nothing
INT23:    B    _nothing
INT24:    B    _nothing
INT25:    B    _nothing
INT26:    B    _nothing
INT27:    B    _nothing
INT28:    B    _nothing
INT29:    B    _nothing
INT30:    B    _nothing
INT31:    B    _nothing


⌨️ 快捷键说明

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