/* * Adds the constants 32 (0x20) and 96 (0x60) together. It stores the * sum 128 (0x80) to memory address 0. * * Copyright(c) 2019-2020 Jason Tang * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ movi R0, #32 movi R1, #96 add. R2, R0, R1 movi R0, #0 stwi R2, R0, #0 halt