remove all non-incmp statements after HALT

This commit is contained in:
Carlosokumu 2024-12-13 17:01:01 +03:00
parent a3d63e8bf5
commit b014cf0dcc
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953
10 changed files with 10 additions and 10 deletions

View File

@ -3,6 +3,5 @@ RELOAD get_current_profile_info
MAP get_current_profile_info
MOUT back 0
HALT
LOAD save_familyname 32
INCMP _ 0
INCMP edit_family_name_next *

View File

@ -1,3 +1,4 @@
LOAD save_familyname 32
RELOAD save_familyname
CATCH incorrect_pin flag_incorrect_pin 1
CATCH update_familyname flag_allow_update 1

View File

@ -3,6 +3,5 @@ RELOAD get_current_profile_info
MAP get_current_profile_info
MOUT back 0
HALT
LOAD save_firstname 64
INCMP _ 0
INCMP edit_first_name_next *

View File

@ -1,3 +1,4 @@
LOAD save_firstname 64
RELOAD save_firstname
CATCH incorrect_pin flag_incorrect_pin 1
CATCH update_firstname flag_allow_update 1

View File

@ -1,9 +1,7 @@
LOAD get_current_profile_info 0
RELOAD get_current_profile_info
LOAD save_location 16
MOUT back 0
HALT
RELOAD save_location
INCMP _ 0
INCMP edit_location_next *

View File

@ -1,3 +1,5 @@
LOAD save_location 16
RELOAD save_location
CATCH incorrect_pin flag_incorrect_pin 1
CATCH update_location flag_allow_update 1
RELOAD set_back

View File

@ -1,9 +1,7 @@
LOAD get_current_profile_info 0
RELOAD get_current_profile_info
LOAD save_offerings 8
MOUT back 0
HALT
RELOAD save_offerings
INCMP _ 0
INCMP edit_offerings_next *

View File

@ -1,3 +1,5 @@
LOAD save_offerings 8
RELOAD save_offerings
CATCH incorrect_pin flag_incorrect_pin 1
CATCH update_offerings flag_allow_update 1
RELOAD set_back

View File

@ -1,11 +1,7 @@
LOAD get_current_profile_info 0
LOAD save_yob 16
RELOAD get_current_profile_info
MAP get_current_profile_info
MOUT back 0
HALT
LOAD verify_yob 0
RELOAD verify_yob
RELOAD save_yob
INCMP _ 0
INCMP edit_yob_next *

View File

@ -1,3 +1,7 @@
LOAD save_yob 16
LOAD verify_yob 8
RELOAD verify_yob
RELOAD save_yob
CATCH incorrect_date_format flag_incorrect_date_format 1
CATCH incorrect_pin flag_incorrect_pin 1
CATCH update_yob flag_allow_update 1