toByteVal :: BC -> [Char]
toByteVal b
-# bt = toBC b
+# bt = toChar $ consIndex{|*|} b + 1
= [bt:case b of
(BCPush i) = i
(BCAnalogRead i) = [toChar i]
(BCJmpT i) = [toChar i]
(BCJmpF i) = [toChar i]
_ = []]
- where
- toBC b = toChar $ consIndex{|*|} b + 1
instance Semigroup (ByteCode a p) where
mappend m n = BC \s->let (b1, (b2, t)) = runBC m <$> runBC m s in (b1 ++ b2, t)
toChar (Digital p) = toChar $ consIndex{|*|} p + 1
toChar (Analog p) = toChar $ consIndex{|*|} p + 1
-derive gPrint BC, AnalogPin, Pin, DigitalPin
+derive gPrint BC, AnalogPin, Pin, DigitalPin, BCState
derive consIndex BC, Pin, Button
derive consName BC, Pin, Button
in runBC (f fresh) {s & freshs=fs}
instance sds ByteCode where
-// sds f = {main = withSDS \sds->
-// let (v In body) = f sds
-// in retrn [BCSdsStore sds]
-// }
- sds f = abort "undef on sds"
+ sds f = {main = withSDS \sds->
+ let (v In body) = f $ retrn [BCSdsStore sds]
+ in unMain body <++> retrn [BCSdsStore sds]
+ }
con f = undef
instance assign ByteCode where
- (=.) v e = e <++> v
+ (=.) v e = e <++> abort (printToString $ fst $ runBC v zero)
+
+instance seq ByteCode where
+ (>>=.) _ _ = abort "undef on >>=."
+ (:.) x y = x <++> y
instance serial ByteCode where
serialAvailable = retrn [BCSerialAvail]
Start = toReadableByteCode $ unMain bc
where
bc :: Main (ByteCode Int Expr)
- bc = sds \x=46 In {main = x =. x +. lit 31}
+ bc = sds \x=46 In
+ sds \y=46 In
+ {main = y =. x +. y}
//to16bit :: Int -> String
//to16bit i = toString (toChar (i/265)) +++ toString (toChar (i rem 265))