sx/b compiler bug?

Hi,
·I've been using sx/b to help me with assembly· This code compiled ok , but forgot to give jump addresses to assembly·. Was this my error ?
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Thank's Brian
www.truckwiz.com
·"Imagination is more important than knowledge..." ·· Albert Einstein
http://www.diycalculator.com/subroutines.shtml· My favorite website ( Bet you can't guess why)
·I've been using sx/b to help me with assembly· This code compiled ok , but forgot to give jump addresses to assembly·. Was this my error ?
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Thank's Brian
www.truckwiz.com
·"Imagination is more important than knowledge..." ·· Albert Einstein
http://www.diycalculator.com/subroutines.shtml· My favorite website ( Bet you can't guess why)
Comments
DEVICE SX28, OSC4MHZ, TURBO, STACKX, OPTIONX FREQ 4_000_000 key1 pin rb.0 key2 pin rb.1 key3 pin rb.2 key4 pin rb.3 key5 pin rb.4 piezo pin rb.6 pause1 con 1 pause2 con 2 pause3 con 3 pause4 con 4 pause5 con 5 timer var byte program start start: if key1 = 1 then timer = pause1 endif if key2 = 1 then timer = pause2 endif if key3 = 1 then timer = pause3 endif if key4 = 1 then timer = pause4 endif if key5 = 1 then timer = pause5 else timer = 0 endif high piezo pause timer low piezo pause timer goto start
- Sparks
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Thank's Brian
www.truckwiz.com
·"Imagination is more important than knowledge..." ·· Albert Einstein
http://www.diycalculator.com/subroutines.shtml· My favorite website ( Bet you can't guess why)