Post Reply 
HP-71B & PILBox & Remote Terminal
11-26-2020, 12:15 AM
Post: #13
RE: HP-71B & PILBox & Remote Terminal
Here are the roughly equivalent setup / reset program for using pyILPer, which includes separate PRINTER and DISPLAY devices. If you're using the traditional ILPer client, there is no dedicated DISPLAY device, but you can easily change the program to declare the printer is the display device, adding a statement DISPLAY IS ":P1"

Code:
LIST 'PILHP75'
10 ! PILHP75 version 0.1 set up printer, keyboard and display for pyILPER
20 DISPLAY IS * @ PRINTER IS * @ DELAY 1
30 ON ERROR GOTO 140
40 KEYBOARD IS * @ RESTORE IO @ CLEAR LOOP
50 ASSIGN LOOP @ DISP ;"Assigning: ";
60 ON ERROR GOTO 80
70 PRINTER IS ':p1' @ DISP ;"Printer.. ";
80 ON ERROR GOTO 120
90 DISPLAY IS ':d1' @ DELAY 0 @ DISP ;"Display.. ";
100 IF DEVID$(':d1')<>"PILTERM" THEN GOTO 120
110 KEYBOARD IS ':d1' @ DISP ;"Keyboard.. ";
120 DISP ;"Done "
130 GOTO 150
140 DISP ;"HP75 I/O rom needed for this program"
150 OFF ERROR @ END

LIST 'CLEARPIL'
10 PRINTER IS *
20 KEYBOARD IS *
30 DISPLAY IS *
40 OFF IO
50 STOP

--Bob Prosperi
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: HP-71B & PILBox & Remote Terminal - rprosperi - 11-26-2020 12:15 AM



User(s) browsing this thread: 1 Guest(s)