Lines Matching refs:module
229 \ show, enable, disable, toggle module loading. They all take module from
232 : set-module-flag ( module_addr val -- ) \ set and print flag
233 over module.flag !
234 dup module.name strtype
235 module.flag @ if ." will be loaded" else ." will not be loaded" then cr
238 : enable-module find-module ?dup if true set-module-flag then ;
240 : disable-module find-module ?dup if false set-module-flag then ;
242 : toggle-module find-module ?dup if dup module.flag @ 0= set-module-flag then ;
244 \ ***** show-module
246 \ Show loading information about a module.
248 : show-module ( <module> -- ) find-module ?dup if show-one-module then ;
276 s" enable-module" s" enable loading of a module" .?
277 s" disable-module" s" disable loading of a module" .?
278 s" toggle-module" s" toggle loading of a module" .?
279 s" show-module" s" show module load data" .?