- Uncategorized

Smallest of N numbers ARM Assembly Code

ARM Assembly Code to find smallest of N numbers and store value in memory  This code is tested in Keil uVision 4. Developed for ARM LPC2148 by Abhay Kagalkar  ARM Code : ;/*Program to find smallest of N numbers*/;/* By Abhay Kagalkar*/ AREA arr,codeENTRYmain ldr r0,=data1 ldr r3,=0x40000000 ldr r4,=0x05…

Read More

- ARM

LCD Interfacing ARM LPC2148 Embedded C

LCD Interfacing-ARM LPC2148  Introduction: This Code is specially developed for LCD on ALS ARM LPC2148 Evaluation Board. A 16*2 Alphanumeric display with backlight is provided on Evaluation Board. Mode of Operation:- LCD is interfaced using 4 bit Mode. Port Details:   P0.2 to P0.7  are used for LCD interfacing. RS =…

Read More

- Verilog

8 Bit Booth Multiplier Verilog Code

Verilog Code module BoothMulti(X, Y, Z); input signed [7:0] X, Y; output signed [31:0] Z;        reg signed [31:0] Z;        reg [1:0] temp;        integer i;        reg E1;        reg [7:0] Y1;        always @ (X, Y)        begin        Z = 31’d0;        E1 = 1’d0;       …

Read More