WARNING: You should not convert a system module that is changing its header while is running.
Commands provided:
*DoWT <RM filename> [<WT module filename>]
Notes:
- SWIs will be converted to DLRs, this means that everybody that uses the SWIs wont be able to use them no more.
- module tasks wont run correct after conversion and that is because of the way that RMs enter the module; don't run such WT modules since they need a small change before.
RMs enter code is is like that:
mov 2,0
adr 1,ModuleTitle
mov 0,#2
swi &2001e ;(OS_Module)
Although WT modules enter code is like that:
mov 1,0
adr 0,ModuleTitle
swi WT_Enter
There is a WT module named: RM+ which is written to support RMs converted to WT modules.