Forgot password? Sign Up

Blogs about: Assembly Language

Featured Blog

COMPUTE nCr USING RECURSION PROCEDURE - Assembly Language Program

Rajesh Hegde wrote 1 week ago: .MODEL SMALL .STACK .DATA N DW 5 R DW 4 NCR DW 1 msg db “The nCr is :$” .CODE MOV AX,@DA … more →

Tags: Assembly Language Programs, ALP, Programs, NCR, Recursive Function

FASM - x86 Blowfish Implementation

programmer209 wrote 2 weeks ago: In this post I implement the Blowfish Encryption Algorithm in x86 assembly language using FASM (the … more →

Tags: Cryptography, encryption, mathematics, x86 assembly language, Blowfish Encryption

Faster Collatz

Steven Pigeon wrote 3 weeks ago: Quite a while ago, I presented the Collatz conjecture and I was then interested in the graphical rep … more →

Tags: Algorithms, C#, Programming, mathematics, C Plus Plus, Collatz, Conjecture

Assembly language Check:--

assemblylanguage wrote 1 month ago: mov ax,bx mov cx,dx … more →

Assembly Program for 16 Bit Subtraction

Rajesh Hegde wrote 1 month ago: .data NUM DW 4567H,2345H DIF DW 1 DUP(0) .code START: MOV AX,@DATA MOV DS,AX CLC ; Clearing Carry LE … more →

Tags: Assembly Language Programs, program, 16bit, subtraction

Assembly Program for 16 Bit Addition

Rajesh Hegde wrote 1 month ago: .data NUM DW 1234H, 0F234H SUM DW 2 DUP(0) .code START: MOV AX,@DATA MOV DS,AX MOV AX,NUM           … more →

Tags: Assembly Language Programs, assembly, program, microprocessor

Program involving Data transfer instructions

Rajesh Hegde wrote 1 month ago: .data DATA1 DB 23H DATA2 DW 1234H DATA3 DB 0H DATA4 DW 0H DATA5 DW 2345H,6789H .code START: MOV AX,@ … more →

Tags: Assembly Language Programs, Data segment, different addressing modes, assembly, program, ALP, Data, Transfer, instruction

A / AS Level Computer Science - what was missed?

ookwudili wrote 1 month ago: Address       Contents                Type             Interpretation 700               LDA         … more →

Tags: Bal

FASM - x86 Modular Exponentiation

programmer209 wrote 1 month ago: In a previous project – Big Integer Calculations – I implemented the modular exponentiat … more →

Tags: mathematics, big numbers, modular exponentiation, Exponentiation by Squaring, Binary Number Arithmetic, x86 assembly language

FASM - Win32 Dialog Boxes

programmer209 wrote 1 month ago: FASM – How To Implement A Win32 Dialog Box FASM – the Flat Assembler – is an assem … more →

Tags: x86 assembly language, fasm

Learning curves...

ookwudili wrote 2 months ago: Trial and improvement tables, thinking one may be linked to the other? - or not(in the making) http: … more →

Tags: Web Centric Languages, z80, Web-centric, procedural, Internet Marketing, Affiliate Marketing, click through rate, Compensation methods, Digital Marketing

Introduction to Microcontrollers

Electronictweets wrote 2 months ago: What is microcontroller?? A microcontroller sometimes abbreviated MCU is a small computer on a singl … more →

Tags: microcontrollers

Using Assembly Language Inside A High-Level Language

Ian Rastall wrote 2 months ago: By wrapping your assembler in a function, you can write inline assembly code. Inline assembly code i … more →

Tags: Computing, Programming

Who knows computer assembly?

littleoz2 wrote 2 months ago: Today i have started to learn assembly code at college. Who else knows assembly code? share your tho … more →

Tags: Computing, learn assembly, Wikipedia

"Hello, World!" In Assembly Language

Ian Rastall wrote 2 months ago: TITLE Hello World Program (Hello.asm) .MODEL small .STACK 100h .386 .data message BYTE "Hello, … more →

Tags: Computing, Programming

Trigonometric Tables Reconsidered1 comment

Steven Pigeon wrote 2 months ago: A couple of months ago (already!) 0xjfdube produced an excellent piece on table-based trigonometric … more →

Tags: Algorithms, C#, Programming, embedded programming, C'99, mathematics, C Plus Plus, sine, Sin

Casio fx-83Es, recursions..1 comment

ookwudili wrote 2 months ago: Not sure if chained calculations is the correct term, although discovered stat tables on my scientif … more →

Tags: z80, procedural, checksum, FEC, ParityChecks

Assembly Programming (Play musical notes) Tutorial + Sample Codes

Xiruki Tepe wrote 3 months ago: Requirements: 1. Template/Code for Sound Making 2. Excel File provided by me (For notes, tempo, pitc … more →

Tags: Programmer's Haven, Musical Notes, sounds, Uvision Keil, xiruki tepe

Moving Data Elements

andersonmok wrote 3 months ago: We can use MOV instruction to move data in assembly language and the syntax is: movx source, destina … more →


Have your say. Start a blog.

See our free features →

Related Tags
All →

Follow this tag via RSS