diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-27 13:52:21 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-05-27 13:52:21 +0200 |
commit | 5085f9737b62a7ce4a60ed73f43f801535ebe9f1 (patch) | |
tree | 68603fe76709847092979f1f07fd03e36309b173 /src/app/transactiontest/main.cc | |
parent | a2f5c26a8ac422e9318733fc4d30cef9eb96b3cb (diff) |
Resume execution after power loss
Diffstat (limited to 'src/app/transactiontest/main.cc')
-rw-r--r-- | src/app/transactiontest/main.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app/transactiontest/main.cc b/src/app/transactiontest/main.cc index cb2d86e..d0ef9bf 100644 --- a/src/app/transactiontest/main.cc +++ b/src/app/transactiontest/main.cc @@ -42,10 +42,12 @@ int main(void) gpio.setup(); kout.setup(); - //restore_state(); gpio.led_on(0); gpio.input(GPIO::p4_5, 1); + + asm_load_all(); + kout << "Hello, World!" << endl; arch.idle_loop(); |