X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=mTaskInterpret.dcl;h=1baf8781afc2ced13425d2d92c1623321d8ad113;hb=1383ec4c1733cc6f07fe68e0619446d60fe5277e;hp=0deb6652f642afca08fbda26c3635ff72a81ecd0;hpb=93cabbcd5d18b7b45d6f43a6ff39f94cfcb95522;p=mTask.git diff --git a/mTaskInterpret.dcl b/mTaskInterpret.dcl index 0deb665..1baf878 100644 --- a/mTaskInterpret.dcl +++ b/mTaskInterpret.dcl @@ -5,6 +5,17 @@ from Control.Monad.State import :: State, :: StateT from Data.Monoid import class Semigroup, class Monoid import mTask +:: MTaskMessage + = MTSds Int String + | MTTask Int String + | MTPub Int String + | MTUpd Int String + | MTEmpty + +instance toString MTaskMessage +encode :: MTaskMessage -> String +decode :: String -> MTaskMessage + :: BC = BCNop | BCLab Int @@ -72,8 +83,8 @@ instance boolExpr ByteCode instance analogIO ByteCode instance digitalIO ByteCode instance If ByteCode Stmt Stmt Stmt +instance If ByteCode e Stmt Stmt instance If ByteCode Stmt e Stmt -instance If ByteCode Stmt Stmt e instance If ByteCode x y Expr instance IF ByteCode instance noOp ByteCode @@ -83,8 +94,9 @@ instance assign ByteCode instance seq ByteCode instance serial ByteCode -getSDSBytes :: BCState -> String -getTaskBytes :: Int String -> String +//pub :: (ByteCode a b) -> ByteCode a b + +toMessages :: Int (String, BCState) -> [MTaskMessage] toByteVal :: BC -> [Char] toReadableByteCode :: (ByteCode a b) -> (String, BCState)