top of page

Programming Guidelines

  • Use a plain text editor to write your Vic programs (any plain editor will do). 

  • Save each program on your PC, using the file name myProg.asm.

  • When developing Vic programs, it is best to have three windows open simultaneously: the text editor (where you write/edit your program), the assembler (with which you translate the program into executable code), and the simulator (where you execute the translated code).  

  • Unless instructed otherwise, write your Vic programs using the symbolic Vic language (not the executable language).

  • Load the program file into the assembler (left control at the bottom of the "source code" pane).

  • Translate your program into executable code (arrow control).

  • Load the executable code into the simulator (left control at the bottom of the "executable code" pane)

  • Switch to the simulator window, and run the program.

  • If you have bugs and issues, fix the program in the text editor, save, load, translate, load, run, etc.

bottom of page