0 Members and 2 Guests are viewing this topic.
I think you should say somewhere that IX and HL are always mutually exclusive. There is no instruction that can take HL and IX as its arguments. (so you can't do add hl,ix)
By the way, I haven't got time to check the tutorials yet, but are you planning to have a section specifically for stuff that is not compatible with the TI-Nspire, discouraging their usage unless absolutely needed (for speed, for example)?
Aaah ok. Well, if he ever do any doc on them, he should probably warn that those will not work on the Nspire.
Main_Menu .equ 0Settings_Menu .equ1Players_Menu .equ 2Names_Menu .equ 3Main_Menu_Items .equ 4Settings_Menu_Items .equ 3Players_Menu_Items .equ Settings_Menu_ItemsNames_Menu_Items .equ Player_Menu_Items
Names_Menu_Items .equ Players_Menu_Items
Quote from: Lesson 6 Page 9Main_Menu .equ 0Settings_Menu .equ1Players_Menu .equ 2Names_Menu .equ 3Main_Menu_Items .equ 4Settings_Menu_Items .equ 3Players_Menu_Items .equ Settings_Menu_ItemsNames_Menu_Items .equ Player_Menu_ItemsShould be:Code: [Select]Names_Menu_Items .equ Players_Menu_Items(I think)
Also, .org 40339 should be changed to .org $9D93, because RAM addresses are generally expressed in hexadecimal.
Quote from: souvik1997 on March 06, 2011, 03:55:29 pmAlso, .org 40339 should be changed to .org $9D93, because RAM addresses are generally expressed in hexadecimal.Um... you might want to see thishttp://ourl.ca/9514