Skip to content

Latest commit

 

History

History
17 lines (17 loc) · 569 Bytes

README.md

File metadata and controls

17 lines (17 loc) · 569 Bytes

AGON_DEMO_02_UDC2

A simple demo of using user defined characters.
The same as AGON_DEMO_01_UDC but using VDU statements chained together instead of PRINT TAB etc.
Less code but not as human readable.
YouTube Link:
https://youtu.be/mDo5QZ3cZqA

Look at this section of line 9030:

9030 VDU 31,T1X,T1Y,27,201,27,202,
VDU 31,T1X,T1Y = PRINT TAB(T1X,T1Y)......
VDU 27,201     = CHR$(201)......
VDU 27,202     = CHR$(202)......

Now look at AGON_DEMO_01_UDC and you see there on line 9060.

PRINT TAB(T1X,T1Y);CHR$(201);CHR$(202)