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

📄 vectors.asm

📁 这是DSP2407的一个例子
💻 ASM
字号:
;************************************************************
; File name: vectors.h
;************************************************************  
        .ref   _c_int0  ;defined in other files and used in this file
        .ref   _nothing
        .ref   _sci;_c_int1 ;
        .ref   _timer;_c_int2 ;
        ;.ref   _ad;
        .sect "vectors" 

        
RESET    B   _c_int0 ; Reset Vector
INT1     B   _nothing;_c_int1  Interrupt Level 1    
INT2     B   _timer;_c_int2  Interrupt Level 2
INT3     B   _nothing  ; Interrupt Level 3
INT4     B   _nothing  ; Interrupt Level 4
INT5     B   _sci ; Interrupt Level 5
INT6     B   _nothing  ; Interrupt Level 6
RESERVED B   _nothing ; Reserved
SW_INT8  B   _nothing ; Software Interrupt
SW_INT9  B   _nothing ; Software Interrupt
SW_INT10 B   _nothing ; Software Interrupt
SW_INT11 B   _nothing ; Software Interrupt
SW_INT12 B   _nothing ; Software Interrupt
SW_INT13 B   _nothing ; Software Interrupt
SW_INT14 B   _nothing ; Software Interrupt
SW_INT15 B   _nothing ; Software Interrupt
SW_INT16 B   _nothing ; Software Interrupt
TRAP     B   _nothing ; Trap vector
NMI      B   NMI ;  Non–maskable Interrupt
EMU_TRAP B   _nothing ; Emulator Trap
SW_INT20 B   _nothing ; Software Interrupt
SW_INT21 B   _nothing ; Software Interrupt
SW_INT22 B   _nothing ; Software Interrupt
SW_INT23 B   _nothing ; Software Interrupt
SW_INT24 B   _nothing ; Software Interrupt
SW_INT25 B   _nothing ; Software Interrupt
SW_INT26 B   _nothing ; Software Interrupt
SW_INT27 B   _nothing ; Software Interrupt
SW_INT28 B   _nothing ; Software Interrupt
SW_INT29 B   _nothing ; Software Interrupt
SW_INT30 B   _nothing ; Software Interrupt
SW_INT31 B   _nothing ; Software Interrupt 
        
; Code–security passwords are stored from 40h – 43h
;        .word 0000h ; Replace values with
;        .word 0000h ; code–security passwords
;        .word 0000h
;        .word 0000h   
;        .text
;PHANTOM  B    PHANTOM   
        .end

⌨️ 快捷键说明

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