Skip to content

Commit 36f4427

Browse files
committed
Add help message about mount/boot
1 parent 2bc6bc4 commit 36f4427

File tree

7 files changed

+51
-14
lines changed

7 files changed

+51
-14
lines changed

Changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
## [Unreleased]
4+
5+
- Add "Option to boot" message to every module page
6+
- Add "TAB" message to help message when entering wifi password
7+
- Add Changelog.md to track changes in releases
8+
9+
## [1.0.0] - 2024-07-13
10+
11+
- First public release!

src/atari/full/modules/mod_devices/md_init_screen.s

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
.import _clr_scr_all
44
.import _pmg_space_left
55
.import _pmg_space_right
6+
.import _put_s
67
.import _put_help
78
.import _put_status
8-
.import md_h1, md_s1, md_s2
9+
.import md_h1, md_s1, md_s2, mg_l1
910
.import pusha
1011

1112
.include "zp.inc"
@@ -17,6 +18,8 @@
1718
put_status #0, #md_s1
1819
put_status #1, #md_s2
1920
put_help #0, #md_h1
21+
put_s #5, #21, #mg_l1
22+
2023
mva #$06, _pmg_space_left
2124
mva #$01, _pmg_space_right
2225
rts

src/atari/full/modules/mod_hosts/mh_init_screen.s

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
.import _clr_scr_all
44
.import _pmg_space_left
55
.import _pmg_space_right
6+
.import _put_s
67
.import _put_help
78
.import _put_status
8-
.import mh_h1, mh_s1, mh_s2
9+
.import mh_h1, mh_s1, mh_s2, mg_l1
910
.import pusha
1011

1112
.include "zp.inc"
@@ -17,6 +18,7 @@
1718
put_status #0, #mh_s1
1819
put_status #1, #mh_s2
1920
put_help #0, #mh_h1
21+
put_s #5, #21, #mg_l1
2022
mva #$06, _pmg_space_left
2123
mva #$01, _pmg_space_right
2224
rts

src/atari/full/modules/mod_info/mi_init_screen.s

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
.import _put_s_nl
1515
.import _put_status
1616
.import _scr_clr_highlight
17+
.import mg_l1
1718
.import mx_h1
1819
.import mx_k_app_name
1920
.import mx_k_bank_cnt
@@ -54,6 +55,8 @@ _mi_init_screen:
5455
put_s #18, #2, #mx_v_version
5556
put_s #2, #3, #mx_k_bank_cnt
5657

58+
put_s #5, #21, #mg_l1
59+
5760
; convert bank count to screen value
5861
lda _bank_count
5962

src/atari/full/modules/mod_wifi/mw_display_wifi.s

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
.import mw_mac
1111
.import mw_netmask
1212
.import mw_ssid
13-
.import mw_version
1413
.import pusha
1514

1615
.include "zp.inc"

src/atari/full/modules/mod_wifi/mw_init_screen.s

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
.import _pmg_space_left
77
.import _pmg_space_right
88
.import _put_help
9+
.import _put_s
910
.import _put_status
1011
.import _scr_clr_highlight
12+
.import mg_l1
1113
.import mw_h1
1214
.import mw_s1
1315
.import mw_s2
@@ -27,6 +29,7 @@
2729
put_status #0, #mw_s1
2830
put_status #1, #mw_s2
2931
put_help #0, #mw_h1
32+
put_s #5, #21, #mg_l1
3033
lda #$01
3134
sta _pmg_space_left
3235
sta _pmg_space_right

src/atari/full/screen/mod_screen_data.s

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
.export mh_s1, mh_s2, mh_h1
22
.export md_s1, md_s2, md_h1
3-
.export mw_s1, mw_s2, mw_h1, mw_h2, mw_help_setup, mw_help_password, mw_custom_msg, mw_help_custom
3+
.export mw_s1, mw_s2, mw_h1, mw_h2, mw_help_setup, mw_help_password, mw_custom_msg
44
.export mx_s1, mx_s2, mx_h1, mx_pref_edit_help
55
.export mx_k_app_name, mx_v_app_name
66
.export mx_k_version, mx_v_version
77
.export mx_k_bank_cnt
88
.export mf_s1, mf_h1, mf_prev, mf_next, mf_copying_msg
99
.export mf_host, mf_filter, mf_path
1010
.export mx_k_colour, mx_k_bright, mx_k_shade, mx_k_bar_conn, mx_k_bar_dconn, mx_k_bar_copy
11+
.export mg_l1
1112

1213
.export mw_bssid
1314
.export mw_dns
@@ -130,6 +131,10 @@ mw_help_setup:
130131
.byte "Exit", 0
131132

132133
mw_help_password:
134+
NORMAL_CHARMAP
135+
.byte $81, "TAB", $82
136+
INVERT_ATASCII
137+
.byte "Next"
133138
NORMAL_CHARMAP
134139
.byte $81, "E", $82
135140
INVERT_ATASCII
@@ -142,13 +147,15 @@ mw_help_password:
142147
.byte $81, "ESC", $82
143148
INVERT_ATASCII
144149
.byte "Exit", 0
145-
mw_help_custom:
146-
INVERT_ATASCII
147-
.byte "Enter Custom SSID "
148150
NORMAL_CHARMAP
149-
.byte $81, "ESC", $82
150-
INVERT_ATASCII
151-
.byte "Exit", 0
151+
152+
; mw_help_custom:
153+
; INVERT_ATASCII
154+
; .byte "Enter Custom SSID "
155+
; NORMAL_CHARMAP
156+
; .byte $81, "ESC", $82
157+
; INVERT_ATASCII
158+
; .byte "Exit", 0
152159

153160
mw_custom_msg:
154161
NORMAL_CHARMAP
@@ -170,10 +177,6 @@ mx_s2:
170177
.byte $81, $1f, $82, 0
171178

172179
mx_h1:
173-
; NORMAL_CHARMAP
174-
; .byte $81, "OPTION", $82
175-
; INVERT_ATASCII
176-
; .byte "Mount Disks and Boot!", 0
177180
NORMAL_CHARMAP
178181
.byte $81, $1c, $1d, $82 ; endL up down endR
179182
INVERT_ATASCII
@@ -279,3 +282,16 @@ mw_bssid: .byte "BSSID:", 0
279282

280283
mw_nets_msg: .byte "Fetching Networks", 0
281284
mw_nets_msg2: .byte " ", 0
285+
286+
; ------------------------------------------------------------------
287+
; GLOBAL data
288+
; ------------------------------------------------------------------
289+
290+
mg_l1:
291+
NORMAL_CHARMAP
292+
.byte $01
293+
INVERT_ATASCII
294+
.byte "OPTION"
295+
NORMAL_CHARMAP
296+
.byte $02
297+
.byte "Mount Disks and Boot", 0

0 commit comments

Comments
 (0)