Back end build errors

Discussion about the ZBasic language including the System Library. If you're not sure where to post your message, do it here. However, do not make test posts here; that's the purpose of the Sandbox.
Post Reply
FFMan
Posts: 502
Joined: 09 January 2010, 12:52 PM

Back end build errors

Post by FFMan »

Without the debug.print it compiles, with it in it fails.

If i try debug.print getadc(byLDRPin) it fails also

Just a test program to get the calibration of an LDR right.

Code: Select all

option com1speed 115200

Sub Main()

	dim byLDRPin		as byte=28
	dim	inADC			as integer
	
	Call Putpin(byLDRPin,zxinputtristate)
	
	'do
		inADC=Getadc(byLDRPin)
		debug.print inAdc
	'loop
	
End Sub
FFMan
Posts: 502
Joined: 09 January 2010, 12:52 PM

Post by FFMan »

installed the latest build and error has gone.
Post Reply