-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
5,594 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
print_banner: true # Print TalOS banner on startup. | ||
ansi_escapes: false # Support for ANSI escape sequences. | ||
redstone_device: true # Define MineCraft's Redstone device. | ||
|
||
logger: | ||
level: debug # From least to most verbose: `off` `info` `warn` or `debug`. | ||
|
||
info: | ||
stacks: true # Print stacks after each evaluation. | ||
prompt: true # Print the heap's `head` pointer inside the prompt. | ||
summary: true # Print the assembled definition summary. | ||
|
||
warn: | ||
abort: true # Warn each time an evaluation is aborted. | ||
redef: true # Warn on each redefinition. | ||
|
||
debug: | ||
input: false # Print the input buffer. | ||
length: false # Print the assembled bytecode `length`. | ||
head: false # Print the head bytecode. | ||
head_ptr: false # Print the head pointer. | ||
tail: false # Print the tail symbols. | ||
tail_ptr: false # Print the tail pointer. | ||
|
||
theme: | ||
# RGB in decimal. | ||
tui: | ||
red: | ||
# 16-bit 32-bit Decimal | ||
# Default: 3ce9 33ccee99 (51, 204, 238, 153) | ||
background: 51 | ||
foreground: 204 | ||
emphasis: 238 | ||
error: 153 | ||
|
||
green: | ||
# 16-bit 32-bit Decimal | ||
# Default: 0b75 00bb7755 (0, 187, 119, 34) | ||
background: 0 | ||
foreground: 187 | ||
emphasis: 119 | ||
error: 85 | ||
|
||
blue: | ||
# 16-bit 32-bit Decimal | ||
# Default: 2b59 22bb5599 (34, 187, 55, 68) | ||
background: 34 | ||
foreground: 187 | ||
emphasis: 55 | ||
error: 153 | ||
|
||
# RGB in hexadecimal. | ||
gui: | ||
# Default | ||
# 16-bit 24-bit Decimal | ||
# background #302 #330022 (51, 0, 34) | ||
# |foreground #cbb #ccbbbb (204, 187, 187) | ||
# ||emphasis #e75 #ee7755 (238, 119, 55) | ||
# |||error #959 #995599 (153, 0, 68) | ||
# |||| | ||
# vvvv ) | ||
red: 3ce9 | ||
green: 0b75 | ||
blue: 2b59 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{% if print_banner %}ENABLE{% else %}DISABLE{% endif %} @PRINT-BANNER | ||
|
||
( GUI ) | ||
%\RED { #{{ theme.gui.red }} } | ||
%\GREEN { #{{ theme.gui.green }} } | ||
%\BLUE { #{{ theme.gui.blue }} } | ||
|
||
( TUI ) | ||
%\BACKGROUND { "{{ theme.tui.red.background }}; "{{ theme.tui.green.background }}; "{{ theme.tui.blue.background }} } | ||
%\FOREGROUND { "{{ theme.tui.red.foreground }}; "{{ theme.tui.green.foreground }}; "{{ theme.tui.blue.foreground }} } | ||
%\EMPHASIS { "{{ theme.tui.red.emphasis }}; "{{ theme.tui.green.emphasis }}; "{{ theme.tui.blue.emphasis }} } | ||
%\ERROR { "{{ theme.tui.red.error }}; "{{ theme.tui.green.error }}; "{{ theme.tui.blue.error }} } | ||
|
||
( LOGGER ) | ||
{{ logger.level | upper }} @LOG-LEVEL | ||
|
||
( INFO ) | ||
{% if logger.info.stacks %}ENABLE{% else %}DISABLE{% endif %} @INFO-STACKS | ||
{% if logger.info.prompt %}ENABLE{% else %}DISABLE{% endif %} @INFO-PROMPT | ||
{% if logger.info.summary %}ENABLE{% else %}DISABLE{% endif %} @INFO-SUMMARY | ||
|
||
( WARN ) | ||
{% if logger.warn.abort %}ENABLE{% else %}DISABLE{% endif %} @WARN-ABORT | ||
{% if logger.warn.redef %}ENABLE{% else %}DISABLE{% endif %} @WARN-REDEF | ||
{% if logger.level == "debug" %} | ||
( DEBUG ) | ||
{% if logger.debug.length %}ENABLE{% else %}DISABLE{% endif %} @DEBUG-LENGTH | ||
{% if logger.debug.head_ptr %}ENABLE{% else %}DISABLE{% endif %} @DEBUG-HEAD-PTR | ||
{% if logger.debug.tail_ptr %}ENABLE{% else %}DISABLE{% endif %} @DEBUG-TAIL-PTR | ||
{% if logger.debug.input %}ENABLE{% else %}DISABLE{% endif %} @DEBUG-INPUT | ||
{% if logger.debug.heap %}ENABLE{% else %}DISABLE{% endif %} @DEBUG-HEAD | ||
{% if logger.debug.symbols %}ENABLE{% else %}DISABLE{% endif %} @DEBUG-TAIL | ||
{% endif %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
@Main | ||
|0100 ( a0 1214 ... ) ;meta | ||
|0103 ( 80 06 .. ) #06 | ||
|0105 ( 37 7 ) DEO2 | ||
|
||
|0106 ( a0 1ac0 ... ) ;tail/end | ||
|0109 ( a0 1313 ... LIT2 1313 #1313 ) ;tail | ||
|010c ( 39 9 ) SUB2 | ||
|010d ( af . ) STH2k | ||
|010e ( a0 00 00 ... ) LIT2 0000 | ||
|0111 ( a0 1313 ... ) LIT2 1313 | ||
|0114 ( a0 0000 ... ) LIT2 0000 | ||
|
||
|0117 ( a0 fb40 ..@ ) LIT2 fb40 | ||
|011a ( ef . ) STH2kr | ||
|011b ( 39 9 ) SUB2 | ||
|011c ( af . ) STH2k | ||
|011d ( 60 ` ) 60 | ||
|011e ( 0b . ) LTH | ||
|011f ( 34 4 ) LDA2 | ||
|0120 ( 64 d ) SWP2r | ||
|0121 ( 6f o ) STH2r | ||
|0122 ( a0 00 00 ... ) LIT2 0000 | ||
|0125 ( a0 13 13 ... ) LIT2 1313 | ||
|0128 ( 60 ` ) 60 | ||
|0129 ( 0b . ) LTH | ||
|012a ( 11 . ) STZ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.