initializers.txt

来自「BIOS Open Platform!」· 文本 代码 · 共 25 行

TXT
25
字号
Initializers are called when the forth kernel is started, to do someinitialization stuff. Pro: If code needs initialization you can keep this in place with the codeand don't need to patch the kernel itself to do so.There are 2 types of initializers. "Normal" and "Late" initializers.Since initializers are only called during startup, they don't need a name.Definition:  initializer      ( xt -- )  late-initializer ( xt -- )Examples:  :noname <definition> ; initializer  :noname     some-base initializations  ; late-initializer Late initializers are run after all ordinary initializers havebeen executed.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?