You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes labels inside modules are compiled as "0" when used in another module.
For example :
module a
test equ 2
endmod
module b
display "value of a.test :",a.test ; ok (displays 2)
data defb a.test ; replaced by 0
endmod
Likely it depends on the pass or something like that... Was fixed in the older version that couldn't build as standalone, but I didn't see anything obvious in the diff.
From [email protected] on July 02, 2010 17:37:09
Sometimes labels inside modules are compiled as "0" when used in another module.
For example :
module a
test equ 2
endmod
module b
display "value of a.test :",a.test ; ok (displays 2)
data defb a.test ; replaced by 0
endmod
Likely it depends on the pass or something like that... Was fixed in the older version that couldn't build as standalone, but I didn't see anything obvious in the diff.
Original issue: http://code.google.com/p/cpcsdk/issues/detail?id=40
The text was updated successfully, but these errors were encountered: