User Tools

Site Tools


base:using_a_running_vice_session_for_development

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
base:using_a_running_vice_session_for_development [2016-06-28 20:27] – [Setting up the client side] compyxbase:using_a_running_vice_session_for_development [2016-06-30 11:18] – corrections in Makefile snippets compyx
Line 141: Line 141:
 Again, this becomes tedious, having to type this again and again, so we update our Makefile (just the new parts for now): Again, this becomes tedious, having to type this again and again, so we update our Makefile (just the new parts for now):
 <code make> <code make>
 +ASM=64tass
 +
 +
 # Default make target: just assemble the program: # Default make target: just assemble the program:
 all: demo.prg all: demo.prg
Line 147: Line 150:
 # Assemble program # Assemble program
 demo.prg: demo.s demo.prg: demo.s
-        $(X64) -a -C -o demo.prg demo.s+        $(ASM) -a -C -o demo.prg demo.s
  
  
Line 177: Line 180:
 <code make> <code make>
 # x64 binary # x64 binary
-X64 = /usr/local/bin/x64+X64=/usr/local/bin/x64 
 +# Assembler 
 +ASM=64tass
  
 # Original KERNAL # Original KERNAL
Line 194: Line 199:
 # Assemble program and output VICE labels file # Assemble program and output VICE labels file
 demo.prg: demo.s demo.prg: demo.s
-        $(X64) -a -C -o demo.prg demo.s --vice-labels -l labels.txt+        $(ASM) -a -C -o demo.prg demo.s --vice-labels -l labels.txt
  
  
Line 269: Line 274:
 # x64 binary # x64 binary
 X64 = /usr/local/bin/x64 X64 = /usr/local/bin/x64
 +# Assembler
 +ASM=64tass
  
 # Original KERNAL # Original KERNAL
Line 285: Line 292:
 # Assemble program and output VICE labels file # Assemble program and output VICE labels file
 demo.prg: demo.s demo.prg: demo.s
-        $(X64) -a -C -o demo.prg demo.s --vice-labels -l labels.txt+        $(ASM) -a -C -o demo.prg demo.s --vice-labels -l labels.txt
  
  
base/using_a_running_vice_session_for_development.txt · Last modified: 2016-07-01 13:35 by compyx