Does anybody have any good references for mixing asm with basic in PB? I dont want to get heavily into assembly as such, but there are some relatively simple (well, in basic
things such as general maths (add, take, multiply) and string functions (concatenate, trim, etc) that i'd like to learn how to do in assembly for performance reasons
Looking in the PB documentation at the ASM keyword, this part actually somehow made sense to me:
! mov AL,"a" ; move character a into register AL
! mov AX, "ab" ; move characters ab into register AX ("a" into AL and "b" into AH)
! mov EAX, "abcd" ; move characters abcd into register EAX
so im eager to hammer it out - any good references anyone?
------------------

Looking in the PB documentation at the ASM keyword, this part actually somehow made sense to me:
! mov AL,"a" ; move character a into register AL
! mov AX, "ab" ; move characters ab into register AX ("a" into AL and "b" into AH)
! mov EAX, "abcd" ; move characters abcd into register EAX
so im eager to hammer it out - any good references anyone?

------------------
Comment