File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ definition([
2020])
2121
2222// project files
23+ // check palette is loading correctly in s1
2324// provide custom art function
2425
2526/* https://unix.stackexchange.com/questions/585645/launch-an-application-by-a-double-click */
Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ const sizes = {
2323export function parseASM ( text ) {
2424 const comment = regex ( / ^ ; .* $ / m) . map ( ( ) => [ ignore ] ) ;
2525 const even = str ( 'even' ) . map ( ( ) => [ ignore ] ) ;
26- const label = regex ( / ^ [ A - Z 0 - 9 _ @ ] + ( \s + ) ? : / i) . map ( t => [ lbl , t . replace ( ':' , '' ) ] ) ;
26+ const label = regex ( / ^ [ A - Z 0 - 9 _ @ $ . ] + ( \s + ) ? : / i) . map ( t => [ lbl , t . replace ( ':' , '' ) ] ) ;
2727 const hex = regex ( / ^ \$ [ A - F 0 - 9 ] + / i) . map ( t => [ data , parseInt ( t . slice ( 1 ) , 16 ) ] ) ;
28- const address = regex ( / ^ [ A - Z 0 - 9 _ @ ] + - [ A - Z 0 - 9 _ @ ] + / i) . map ( t => [ addr , t ] ) ;
28+ const address = regex ( / ^ [ A - Z 0 - 9 _ @ $ . ] + - [ A - Z 0 - 9 _ @ $ . ] + / i) . map ( t => [ addr , t ] ) ;
2929
3030 const value = choice ( [
3131 digits . map ( t => [ data , t ] ) ,
You can’t perform that action at this time.
0 commit comments