From ec9a0f72c6b7d74c9a7e2d4eaef44e26037eaca2 Mon Sep 17 00:00:00 2001 From: Wojciech Kosior Date: Mon, 28 Dec 2020 11:09:30 +0100 Subject: also add a wasm version of example1 for comparison --- examples/example1a_blink_led_wasm/instructions.wat | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 examples/example1a_blink_led_wasm/instructions.wat (limited to 'examples/example1a_blink_led_wasm/instructions.wat') diff --git a/examples/example1a_blink_led_wasm/instructions.wat b/examples/example1a_blink_led_wasm/instructions.wat new file mode 100644 index 0000000..f231c13 --- /dev/null +++ b/examples/example1a_blink_led_wasm/instructions.wat @@ -0,0 +1,35 @@ +;; Relevant addresses are lower half of timer reg (0x1BFC08) +;; and led2 reg (0x1BFC06). + +(module + (memory 0 2) + (func $main + ;; loop until timer exceeds 1500 + (loop $again + (br_if $again (i32.lt_u + (i32.load16_u offset=0x0 align=1 + (i32.const 0x1BFC08)) + (i32.const 1500)))) + + ;; now, light led2 + (i32.store16 offset=0x0 align=1 + (i32.const 0x1BFC06) (i32.const 0x1)) + + ;; loop until timer exceeds 3000 + (loop $again + (br_if $again (i32.lt_u + (i32.load16_u offset=0x0 align=1 + (i32.const 0x1BFC08)) + (i32.const 3000)))) + + ;; now, switch led2 off + (i32.store16 offset=0x0 align=1 + (i32.const 0x1BFC06) (i32.const 0x0)) + + ;; loop until timer exceeds 4500 + (loop $again + (br_if $again (i32.lt_u + (i32.load16_u offset=0x0 align=1 + (i32.const 0x1BFC08)) + (i32.const 4500))))) + (export "main" (func $main))) -- cgit v1.2.3