Skip to main content

Posts

Showing posts from January, 2022

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-2

   Hello Dear Readers,   Today in this post I will provide some basics to advanced ARM's assembly language practice QA part-2, I have used the Keil tool for code writing. Q-1).   Write an assembly language program for storing the sum of first ‘n=6’ terms of the series 1,4,9,16,25….. Code: ; program for the addition of the n=6 series  area sum_series, code,readonly  entry  mov r2,#0  mov r0,#6 loop    muls r1,r0,r0 ; multiply square number    add r2,r2,r1 ; whole sum is stored on register "r2"  subs r0,r0,#1  bne loop  end  Output: Q-2).  Write an assembly language program to find the maximum of 3 numbers and store it at location 0x5000. Code: ; program to find maximum number of 3 and store in memory  area max, code, readonly  entry  ldr r0,=data  ldr r3,=0x5000  ldr r4,=0x03 ;create a loop of 3  ldr r1,[r0, #4]  sub r4,r4,#1  again   ldr r2,[r0]   cmp r1,r2   bcs loop ; jump on set carry   mov r1,r2  loop   add r0,r0,#4   sub r4,r4,#1   bne again  str r1,[r3]  stop b stop