Re: PureBasic 5.41 LTS Beta 1 is available
Posted: Wed Nov 25, 2015 7:31 pm
supercdfr,
that's normal yes - in procedures you need to add the procedure name to the label call
Alternatively you can feed the label directly to the assembler, if you'll only be calling it from inline asm
Danilo,
but im a student i can barely afford my PC let alone another computer, so it's VirtualBox or nothing!
that's normal yes - in procedures you need to add the procedure name to the label call
Code: Select all
Procedure test()
! MOV ebx, ll_test_monlabel ;<--- changed ll_monlabel to ll_test_monlabel
monlabel:
EndProcedure
test()

Code: Select all
Procedure test()
! MOV ebx, monlabel
! monlabel:
EndProcedure
test()
Ahhh yes! i never thought of that, thankyou for mentioning - i just might have to heehee, Mac is really fiddly in VMDanilo wrote:You could just install PB/Mac 32bit on a 64bit Mac to create 32bit apps. It's like Windows in this regard, 64bit and 32bit programs run in a 64bit OS.Keya wrote:I dont have a Mac32 system to test but hope to soon!
