• converting uppercase To lowercase in assembly language using keil

    Hi 

        I am beginner in assembly language. I want to convert uppercase to lowercase. i am using keil software.Codes which are searched by me on google i try to run but their output 

    invalid.i am using stm32l476VG. Can anyone help me .Code with commenting…

  • Error with Embedded Assembler in MDK v5.10 !!!

    I installed the latest version of MDK --- uVision5.10 today, but i met an error within embedded assembler in my project

    the source code is simple as below:

    __asm void OS_TO_PRIVILEGE(void)   

    {

        SVC

        NOP

  • Configuring Keil and Startup files problem

    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…

  • in my arm program,why the program can't execute the instruction ldr pc,=main ,my program can't go into the main function,but goback to execue bl init_sdram

    //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…