Skip to main content

Posts

Showing posts with the label ARM Assembly

Design Engineer - STA, SD, Power, PDN at Dew Software

Hello Dear Readers,   Currently at Dew Software Bangalore vacancy for Design Engineer - STA, SD, Power, PDN role. Dew Software, a leading player in the Digital Transformation space, is seeking a skilled Design Engineer specializing in STA (Static Timing Analysis), SD (Signal Integrity), Power, and PDN (Power Delivery Network) to join our team. Working with Fortune 500 companies to support their digital innovation and transformation strategies, the Design Engineer will be responsible for ensuring the integrity and efficiency of digital designs through comprehensive analysis and optimization. Dew Software is dedicated to delivering exceptional outcomes with cutting-edge technologies, and this is an excellent opportunity to contribute to the growth and success of our clients. Responsibilities: Perform STA (Static Timing Analysis) to ensure design meets timing requirements Conduct signal integrity analysis to optimize signal integrity and minimize signal integrity issues Provide power anal

ARM Assembly Language Practice Question And Answer Part-3

  Hello Dear Readers,   Today in this post I will provide some basics to advanced ARM's assembly language practice QA part-3, I have used the Keil tool for code writing. Q-1).  Create a stack that starts from address 0x5000 and contains 5 values, and the stack pointer always points to the uppermost value. Code: ; program to create stack and store 5 values  area stack, code, readonly  entry  ldr r13,=0x5000  ldr r1,=10  ldr r2,=11  ldr r3,=12  ldr r4,=13  ldr r5,=14  STMDB SP!,{r1-r5}  add r4,r3,r5  end  Output: Q-2).  Write a code to find the multiplication of 10 numbers stored consecutively starting from 0x4000. Code: ; program of the multiplication of the 10 numbers  area mul, code, readonly  entry  mov r0,#0x4000  mov r1,#9  ldr r2,[r0]  next    add r0,r0,#4    ldr r3,[r0]    muls r2,r3,r2    subs r1,r1,#1     bne next     add r0,r0,#44     str r2,[r0] stop b stop  end Output: Q-3).  Write an assembly language program to perform dot product of two vectors using a subroutine. Pas