Lines Matching refs:module
230 \ show, enable, disable, toggle module loading. They all take module from
233 : set-module-flag ( module_addr val -- ) \ set and print flag
234 over module.flag !
235 dup module.name strtype
236 module.flag @ if ." will be loaded" else ." will not be loaded" then cr
239 : enable-module find-module ?dup if true set-module-flag then ;
241 : disable-module find-module ?dup if false set-module-flag then ;
243 : toggle-module find-module ?dup if dup module.flag @ 0= set-module-flag then ;
245 \ ***** show-module
247 \ Show loading information about a module.
249 : show-module ( <module> -- ) find-module ?dup if show-one-module then ;
277 s" enable-module" s" enable loading of a module" .?
278 s" disable-module" s" disable loading of a module" .?
279 s" toggle-module" s" toggle loading of a module" .?
280 s" show-module" s" show module load data" .?