Showing posts with label armsim. Show all posts
Showing posts with label armsim. Show all posts

03 November 2017

ARM7TDMI program that computes polynomial

Let's write a program in ARM assembly language that computes the value of a polynomial. A polynomial of degree 2 is an expression of the form a*x**2 + b*x + c, where a, b, and c are constants and x is an input parameter.

02 September 2016

Learning about ARM architecture using ARMSim#

ARMSim# is a desktop application which simulates the operation of an ARM-based system. It was designed as an educational tool, so for the purpose of learning about how the ARM architecture works, it may be a good choice.