1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-26 12:12:52 +00:00

FRONTPANEL: Provide a sample program to demonstrate the use of the sim_frontpanel APIs.

This commit is contained in:
Mark Pizzolato
2015-02-11 17:09:55 -08:00
parent e52ef6407a
commit 3dce4e1210
5 changed files with 542 additions and 0 deletions

View File

@@ -1581,3 +1581,11 @@ ${BIN}pdq3${EXE} : ${PDQ3} ${SIM}
${MKDIRBIN}
${CC} ${PDQ3} ${SIM} ${PDQ3_OPT} $(CC_OUTSPEC) ${LDFLAGS}
# Front Panel API Demo/Test program
frontpaneltest : ${BIN}frontpaneltest${EXE}
${BIN}frontpaneltest${EXE} : frontpanel/FrontPanelTest.c sim_sock.c sim_frontpanel.c
${MKDIRBIN}
${CC} frontpanel/FrontPanelTest.c sim_sock.c sim_frontpanel.c $(CC_OUTSPEC) ${LDFLAGS}