Maby so Bobbylou (I did a rhym!) But learning assembly (incredibly hard) it makes up for learning VB (easy-ish).
VB Is simple for some stuff but if you want to make anything good it takes alot of hard code to make it.
Bobbyloujo wrote:VB is programming for noobs.
And Yoshi is right. PAlib is a library and DBAS is a language.
.INCLUDE "Temp.inc"
.INCLUDE "Include/Include.asm"
.BANK 0 SLOT 0
.ORG 0
.SECTION "MainCode"
Main:
;Init some stuff
InitializeSNES
jsr QuickSetup
jsr JoyInit
;Go to the first room
jmp Room
Room:
;Run the script "Text" and then go to the Room's Loop section.
jsr Text
jmp RoomLoop
RoomLoop:
;Nothing much here since it's just a Hello World
;wai just means PA_WaitForVBL()
wai
jmp RoomLoop
Text:
;Output text and then ReturnToSubstring
PrintString "Hello world!\n"
rts
.ENDS
Users browsing this forum: No registered users and 0 guests