You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 4, 2021. It is now read-only.
first create a file named first_program.perling. then open it with any text editor and copy the following code.
LOAD 01 00 23 # value to print (try changing 23 to any hex value)
LOAD 02 00 01 # pointer to value to print
LOAD 03 00 01 # print mode
LOAD 04 00 03 # pointer to print mode
VMCALL 1F 04 02 # print
after that open a terminal and run the PASM compiler using python3 main.py first_program.perling this will create a new file named first_program.perling.bin run the command perling_vm first_program.perling.bin and see the result.