Hello, Dear Readers, Skyroot Aerospace has a vacancy for the RTL Design Engineer role. About Skyroot Aerospace: A cutting-edge startup founded by ex-ISRO scientists. Dedicated to affordable space access, we're rewriting aerospace technology rules. Our dynamic team fosters inventiveness, collaboration, and relentless excellence. Join us on a transformative journey to redefine space possibilities. Welcome to the forefront of space innovation with Skyroot Aerospace! Purpose of role: Understand architectural requirements and Design micro-architecture, implement design blocks using VHDL/Verilog for FPGA based Avionics packages for orbital launch vehicles and ground infrastructure. Job Requirements: 2+ Years of RTL and system design experience. Strong knowledge on Digital System Design (DSD). Strong knowledge of RTL/SoC design/integration with VHDL/Verilog. Strong knowledge in problem solving and debugging skills. Ability to understand architectural requirements and Design micro-archite...
Hello Dear Readers, Today in this post I will provide some basics to advanced ARM's assembly language practice QA I have used the Keil tool for code writing. Q-1). Perform subtraction of the numbers stored at memory location 0x4000 from the number stored at memory location 0x4004 and place the result in memory location 0x4008. Code: ; Program of the substraction area into, code, readonly entry mov r1, #0x4000 ldr r2,[r1] ldr r3,[r1, #4] sub r4,r3,r2 ; perform substraction operation str r4,[r1, #8] ; store the result at memory location 0x4008 end Output: Q-2). Write a program to check whether the number stored at the memory location is even or odd. Code: ; program for identity number is even or odd area prog2, code, readonly entry mov r1,#0x4000 ; data location ldr r2,[r1] tst r2,#1 ; anding with 0x01 will be updating status of flag register bne odd mov...