• "Hello World" error
    Hello i am new to this programming software, so can anyone tell me whats wrong with this code? #include<stdio.> void main() { printf("Hello World"); while(1); }
  • Failed to debug hello world project on Cortex-A76
    Hi, I'm trying to debug a hello-world C project following the tutorial developer.arm.com/.../Tutorial--Hello-World on FVP Cortex-A76. The program can stop at main and can be debugged successfully, however...
  • Hello World and hyper terminal
    Hi all, When i run the below program in the simulator ,i can see the output "hello world" getting printed in the serial window and LED blinking in Port0.But when I am running the same program in the...
  • stm32f429 discovery hello world
    Hello , I am studying on STM32F429 Discovery Kit in order to do image processing applications. This is the first time that i am trying to use an graphic lcd , I have seen application note 268 that...
  • Hello World Assembly
    I want to simulate the below ARM assembly program on uvision3. AREA HelloW, CODE, READONLY SWI_WriteC EQU &0 SWI_Exit EQU &11 ENTRY START ADR r1,TEXT LOOP LDRB r0,[r1],#1 CMP r0,#0 SWINE SWI_WriteC...