Quite a while ago, I presented the Collatz conjecture and I was then interested in the graphical representation of the problem—and not really going anywhere with it. In this entry, let us have a… more →
Harder, Better, Faster, Strongerwrote 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 →
wrote 2 weeks ago: In this post I implement the Blowfish Encryption Algorithm in x86 assembly language using FASM (the … more →
wrote 3 weeks ago: Quite a while ago, I presented the Collatz conjecture and I was then interested in the graphical rep … more →
wrote 1 month ago: mov ax,bx mov cx,dx … more →
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 →
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 →
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 →
wrote 1 month ago: Address Contents Type Interpretation 700 LDA … more →
wrote 1 month ago: In a previous project – Big Integer Calculations – I implemented the modular exponentiat … more →
wrote 1 month ago: FASM – How To Implement A Win32 Dialog Box FASM – the Flat Assembler – is an assem … more →
wrote 2 months ago: Trial and improvement tables, thinking one may be linked to the other? - or not(in the making) http: … more →
wrote 2 months ago: What is microcontroller?? A microcontroller sometimes abbreviated MCU is a small computer on a singl … more →
wrote 2 months ago: By wrapping your assembler in a function, you can write inline assembly code. Inline assembly code i … more →
wrote 2 months ago: Today i have started to learn assembly code at college. Who else knows assembly code? share your tho … more →
wrote 2 months ago: TITLE Hello World Program (Hello.asm) .MODEL small .STACK 100h .386 .data message BYTE "Hello, … more →
wrote 2 months ago: A couple of months ago (already!) 0xjfdube produced an excellent piece on table-based trigonometric … more →
wrote 2 months ago: Not sure if chained calculations is the correct term, although discovered stat tables on my scientif … more →
wrote 3 months ago: Requirements: 1. Template/Code for Sound Making 2. Excel File provided by me (For notes, tempo, pitc … more →
wrote 3 months ago: We can use MOV instruction to move data in assembly language and the syntax is: movx source, destina … more →