Comments

Log in with itch.io to leave a comment.

Looks interesting. At first glance my main suggestion for an improvement would be to have tabs at the top so different modules (e.g. player, enemy, IRQ, Hud, GameOver) can be kept separate rather than a huge scrolling area. Perhaps with a separate panel that allows access to labels defined in other modules. 

Although it seems to be aimed at people who already know 6502 and the C64 very well and just offers a different way of working, the drag & drop format with a bit of tweaking seems like it would be perfect for teaching beginners.

For example 'LDA IMM 35, CMP 52, BNE COURSE_NOT' means nothing to a beginner but 'Put 35 into  accumulator, compare accumulator with 52, if accumulator is not 52 goto COURSE_NOT' is more understandable, and the underlying instructions could still be shown so they begin to make that connection.

Thanks Arlasoft for the suggestions, they will be useful as this grows. I have comment nodes that will be good to give that kind of teaching side and I will make up a series of files for that at some stage too, as well as make a game with it. In most cases it is as close to coding in assembly as you could get but node based. The macros themselves could contain those things like Hud (with font asset, number of characters for score, Position etc) then the address it would fetch the data from and so on... It's forever evolving and I am in free-fall just trusting the process hoping things will click into place. 

Once the core work is done, right now getting assets and character sets imported and then a collision macro set-up, more things will come to the forefront of what works for me and for the new-comers will start to take premise. Looking forwards to seeing what people can make in any case, even at this early stage.

Each macro has (or will have) a CODE and HELPER button, the code shows the full breakdown of the instructions used, MACRO_SID is pretty big, the helper explains a little about its purpose only. I will have extensive documentation about each opCode but much of that is just extrapolations from what one can find online, so I hope this fills a void for anyone wanting to take a leap from basic to assembly.

Great advances have been made! Update next week!!

(+1)

Great work! I've been using yormesyx64 for a while now, and everything is automatically placed in memory. You can also do it yourself there; maybe something for in c64 dev machine. I'm curious to see how this program develops. I'll definitely use it later.