Skip to content

Instantly share code, notes, and snippets.

@ppe
Created October 10, 2020 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ppe/9c9a1e32719201a7b8ffc33a6cccaf15 to your computer and use it in GitHub Desktop.
Save ppe/9c9a1e32719201a7b8ffc33a6cccaf15 to your computer and use it in GitHub Desktop.
Sample boot file to load ramdisk and QTerm
100 PRINT "Loading qterm"
110 qterm=RESPR(24*1024)
120 LBYTES mdv1_qterm_cde,qterm
130 CALL qterm
140 PRINT "Loading ramdisc"
150 ramdisk=RESPR(2*1024)
160 LBYTES mdv1_ramdisc_cde,ramdisk
170 CALL ramdisk
180 PRINT "Done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment