Hi!
I can simulate ARMv7 assembly code with Keil, however, I cannot simulate ARMv8. Do you know if that is possible?
Many thanks,
Carlos
Hi!
I can simulate ARMv7 assembly code with Keil, however, I cannot simulate ARMv8. Do you know if that is possible?
Many thanks,
Carlos

I am tasked for with checking for valid UPC codes for a school assignment using ARM. I have no prior experience with assembly. After I am able to load the registers with the UPC code I am having trouble figuring out how I am to skip over the required digits…
Hello everyone,
I am new to ARM, and I would like to set it up for programming in Assembly language. I am using Keil 5 and I am using LPC1768. I made a new project and built simple assembly program, but no .hex file was generated. Then I found out that…
//head.S
| .global _start |
| .text |
_start:
| ldr sp,=4095 |
| bl init_sdram |
| bl read_nand_to_sdram |
| ldr sp,=0x34000000 |
| ldr lr,=loop |
| ldr pc,=main |
loop:
| b loop |
//init.c
#include "lcd.h"
void init_sdram(void)
{
volatile unsigned…