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

📄 example2.asm

📁 该应用软件可以实现大多数单片机的仿真实验
💻 ASM
字号:
;
;
;	File: EXAMPLE2.ASM
;	This is the second file in the MPLINK example
;       Use with EXAMPLE.ASM and EXAM.BAT 
;

	list	p=16f84
	#include p16f84.inc

	extern main, service	; These routines are in example.asm

STARTUP	CODE 			; This area is defined in 16C84.LKR, the linker script

	goto main		; Jump to main code defined in example.asm
	nop			; Pad out so interrupt
	nop			;  service routine gets
	nop			;    put at address 0x0004.
	goto service 		; Points to interrupt service routine

	end

⌨️ 快捷键说明

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