| |
Case
Registered: Aug 2002 Posts: 142 |
KickAss & Mac
Hello ... I've just bought a new MacBook Pro and was wondering if anyone out there could instruct me in the following :-
1. a good (free) text editor
2. how to get kickass working under os-x 10.6
any help would be very gratefully recieved. |
|
| |
Cruzer
Registered: Dec 2001 Posts: 1048 |
I'm using a very simple setup with JEdit and a terminal window for running a shell script like this:
java -jar ~/c64/KickAssembler/KickAss.jar routine.asm -execute /Applications/vice/x64.app/Contents/MacOS/x64
To run the script, change to the folder it's in and type ./nameofscript.sh
Next time you can just use arrow up. |
| |
Mr.Ammo Account closed
Registered: Oct 2002 Posts: 228 |
Quoting Case1. a good (free) text editor
Textmate (macromates.com) is quite a good (not free) texteditor. |
| |
Mr. SID
Registered: Jan 2003 Posts: 424 |
TextWrangler is quite a good (free) one... |
| |
Frantic
Registered: Mar 2003 Posts: 1648 |
I use TextMate (not free, as someone said) and got it set up so I can set breakpoints from within the source code and so I can automatically jump to the file+line where an assembly error occurred. |
| |
Digger
Registered: Mar 2005 Posts: 437 |
I've created a bundle that compiles and launches VICE automatically.
echo "<pre>"
killall x64
killall Terminal
java -jar ~/C64/Java/KickAssembler/KickAss.jar $TM_FILEPATH -afo -showmem -libdir /Users/tomek/C64/MyStuff -execute "/Users/tomek/C64/Emuls/MacVice/x64.app/Contents/MacOS/x64 -moncommands breakpoints.txt +confirmexit +warp -speed 100 -remotemonitor -remotemonitoraddress ip4://:6510"
osascript -e 'tell application "Terminal" to do script "telnet localhost 6510"'
#-execute "open $PRG"
echo "</pre>"
Just replace the paths, set input to none and output to "show as HTML" and it should work :) And of course set you favourite shortcut, mine is CMD+R.
I can export the whole bundle for you if you want highlighted keywords and so on. |
| |
Carrion
Registered: Feb 2009 Posts: 317 |
hmmm
for me XCode is enough.
I mean it has a nice coloring of the source code for .s files (yes even for 6502 asm somehow) the rest is done by Terminall.app, bash$ and "open" command. |
| |
Case
Registered: Aug 2002 Posts: 142 |
@digger - that would be very helpful. I'm feeling a little nostalgic right now and wanna start coding again ... and maybe learn how to do it properly this time.
I have textmate now, and it seems pretty good package.
thank you to everyone who has posted here, much appreciated. |
| |
McKrackeN
Registered: Feb 2011 Posts: 20 |
Hi Case,
I've made the same question as you, so here is the thread:
KickAssembler and MacOS X
I hope this thread helps you. I'm using KickAss + Eclipse + VICE and it works like a charm. :) |