This thread contains a patchset. You're looking at the original emails,
but you may wish to use the patch review UI.
Review patch
1
[PATCH donsol 1/2] adding support for the A and B keyboard keys
From: farvardin <eforgeot@gmail.com>
---
src/main.tal | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/main.tal b/src/main.tal
index 9108077..5a77454 100644
--- a/src/main.tal
+++ b/src/main.tal
@@ -283,6 +283,14 @@ BRK
[ #08 ] !~ ,&no-right JCN
.table/selection LDZ INC #00 ;select JSR2 POP BRK
&no-right
+
+ .Controller/key DEI
+ [ LIT 'a ] !~ ,&no-a2 JCN
+ .table/selection LDZ #01 ;select JSR2 POP BRK
+ &no-a2
+ [ LIT 'b ] !~ ,&no-b2 JCN
+ ;run JSR2 POP BRK
+ &no-b2
POP
--
2.32.0
[PATCH donsol 2/2] adding A button on menu
From: farvardin <eforgeot@gmail.com>
---
src/main.tal | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/main.tal b/src/main.tal
index 5a77454..2a6557e 100644
--- a/src/main.tal
+++ b/src/main.tal
@@ -124,6 +124,11 @@ RTN
&no-right
POP
+ .Controller/key DEI
+ [ LIT 'a ] !~ ,&no-a2 JCN
+ ;go-game JSR2 POP BRK
+ &no-a2
+
BRK
@on-mouse-menu ( -> )
--
2.32.0