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

📄 pcidio96.mak

📁 windows系统下实时代码,可以进行底层硬件的实时操作
💻 MAK
字号:
# nmake -nologo -f pcidio96.mak
# 
# Set NODEBUG = 1 for no debugging information in the executable image.
# Set RTSS_CRT = 1 to link RTSS single-threaded applications with C run-time library.
# Set RTSS_MTCRT = 1 to link RTSS multi-threaded applications with C run-time library.

NODEBUG = 1

!include <rtx.mak>

all:\
PciDio96.rtss 


PciDio96_Aux.obj: PciDio96_Aux.c
		$(cc) $(cflags) $(cvars) PciDio96_Aux.c


Timer_Interrupts.obj: Timer_Interrupts.c
		$(cc) $(cflags) $(cvars) Timer_Interrupts.c


PciDio96.rtss: Timer_Interrupts.obj PciDio96_Aux.obj
		$(link) $(conflags) -out:PciDio96.rtss \
			Timer_Interrupts.obj PciDio96_Aux.obj  \
			$(rtsslflags) $(rtsslibs)


clean: 
        del *.exe
	del *.rtss
        del *.obj

⌨️ 快捷键说明

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