rs232.inc

来自「6502 c compiler free open source」· INC 代码 · 共 20 行

INC
20
字号
;; rs232.inc;; (C) Copyright 2002 Ullrich von Bassewitz (uz@cc65.org);; Assembler include file that makes the constants and structures from rs232.h; available for asm code.; Error codes returned by all functionsRS_ERR_OK      	       	       	= $00  	; Not an error - relaxRS_ERR_NOT_INITIALIZED 	       	= $01   ; Module not initializedRS_ERR_BAUD_TOO_FAST   	       	= $02   ; Cannot handle baud rateRS_ERR_BAUD_NOT_AVAIL  	       	= $03   ; Baud rate not availableRS_ERR_NO_DATA 	       	       	= $04   ; Nothing to readRS_ERR_OVERFLOW        	       	= $05   ; No room in send bufferRS_ERR_INIT_FAILED     	       	= $06   ; Initialization of RS232 routines failed

⌨️ 快捷键说明

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