Lines Matching refs:module
201 \ show, enable, disable, toggle module loading. They all take module from
204 : set-module-flag ( module_addr val -- ) \ set and print flag
205 over module.flag !
206 dup module.name strtype
207 module.flag @ if ." will be loaded" else ." will not be loaded" then cr
210 : enable-module find-module ?dup if true set-module-flag then ;
212 : disable-module find-module ?dup if false set-module-flag then ;
214 : toggle-module find-module ?dup if dup module.flag @ 0= set-module-flag then ;
216 \ ***** show-module
218 \ Show loading information about a module.
220 : show-module ( <module> -- ) find-module ?dup if show-one-module then ;
248 s" enable-module" s" enable loading of a module" .?
249 s" disable-module" s" disable loading of a module" .?
250 s" toggle-module" s" toggle loading of a module" .?
251 s" show-module" s" show module load data" .?