Fix Undefined symbol 'TIM_2_8TIC' Value=0 in 03_update.zsm #4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #3!
Replaces
TIM_2_8TIC
withTIM2_8TIC
in03_update.zsm
.This one is a little interesting! The
TIM_2_8TIC
symbol actually exists in the include file inside the Wristapp.i for the 150 zip archive from http://toebes.com/Datalink/wristapps.html:However, the
Wristapp.i
file from Toebes' assembler setup program (inside the zip archive here) does not have the symbolTIM_2_8TIC
. Instead, it contains theTIM2_8TIC
symbol, which looks to be renamed fromTIM_2_8TIC
:Additionally,
TIM_2_8TIC
does not exist in the include file inside the Wristapp.i for the 150s zip archive. It also contains a similarTIM2_8TIC
:Since there's different versions of this include file floating around, I thought I'd check the date stamps of the file in the Wristapp.i for the 150 zip archive vs the file inside the setup program:
Since the include file in the assembler archive is newer, and the same symbol is also available for the 150s in the assembler archive, I'm going to assume that this symbol was renamed after May 10th, 1997 from
TIM_2_8TIC
toTIM2_8TIC
, and that the file in the Wristapp.i for the 150 zip archive is out-of-date.From #3: