SlideShare a Scribd company logo
DATA TRANSFERS IN ASSEMBLY
SANGRAM KESARI RAY <SHANKAR.RAY030@GMAIL.COM>
JMP AND LOOP INSTRUCTIONS
• JMP //UN-CONDITIONAL JUMP, WE’LL DEAL WITH OTHER TYPES OF JUMPS LATER
• JMP DEST
• HERE:
• .
• .
• JMP HERE //INFINITE LOOP
• LOOP
• LOOP DEST //THE DEST MUST BE WITHIN -127 TO +128 BYTES OF THE CURRENT LOCATION COUNTER
• ECX REGISTER IS USED AS INTERNAL LOOP COUNTER
• MOV ECX, 10
• HERE:
• INC EAX
• LOOP HERE
DEMO
Data Transfers 3
https://github.com/shankar-ray/Assembly-Language-Tutorials-for-Windows

More Related Content

PPT
Load Balancing
PPTX
FlumeBase Study
PDF
Compute @ edge
PDF
UEMB260: Provisioning: Under the Hood
PPT
Tm1 parallel loading
PPTX
Layers in Deep Learning & Caffe layers (model architecture )
PDF
Mobile Opera Browser
PDF
Understanding Open Source Serverless Platforms: Design Considerations and Per...
Load Balancing
FlumeBase Study
Compute @ edge
UEMB260: Provisioning: Under the Hood
Tm1 parallel loading
Layers in Deep Learning & Caffe layers (model architecture )
Mobile Opera Browser
Understanding Open Source Serverless Platforms: Design Considerations and Per...

More from Sangram Kesari Ray (7)

PPTX
Assembly Language Tutorials for Windows - 05 Procedures Part 1
PPTX
Assembly Language Tutorials for Windows - 04 Data Transfers Part-2
PPTX
Assembly Language Tutorials for Windows - 04 Data Transfers Part-1
PPTX
Assembly Language Tutorials for Windows - 03 Assembly Language Programming
PPTX
Assembly Language Tutorials for Windows - 02 x86-64 Architecture
PPTX
Assembly Language Tutorials for Windows - 01 Computer Programming
PPTX
03 Win32 API - Creating a Window
Assembly Language Tutorials for Windows - 05 Procedures Part 1
Assembly Language Tutorials for Windows - 04 Data Transfers Part-2
Assembly Language Tutorials for Windows - 04 Data Transfers Part-1
Assembly Language Tutorials for Windows - 03 Assembly Language Programming
Assembly Language Tutorials for Windows - 02 x86-64 Architecture
Assembly Language Tutorials for Windows - 01 Computer Programming
03 Win32 API - Creating a Window
Ad

Recently uploaded (20)

PDF
Digital Systems & Binary Numbers (comprehensive )
PDF
Ableton Live Suite for MacOS Crack Full Download (Latest 2025)
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PDF
Time Tracking Features That Teams and Organizations Actually Need
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Topaz Photo AI Crack New Download (Latest 2025)
PDF
iTop VPN Crack Latest Version Full Key 2025
PPTX
Trending Python Topics for Data Visualization in 2025
PDF
DNT Brochure 2025 – ISV Solutions @ D365
PPTX
chapter 5 systemdesign2008.pptx for cimputer science students
PDF
Wondershare Recoverit Full Crack New Version (Latest 2025)
DOCX
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
PDF
Cost to Outsource Software Development in 2025
PPTX
Why Generative AI is the Future of Content, Code & Creativity?
PDF
Autodesk AutoCAD Crack Free Download 2025
PDF
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
PDF
AI-Powered Threat Modeling: The Future of Cybersecurity by Arun Kumar Elengov...
PPTX
Introduction to Windows Operating System
PPTX
assetexplorer- product-overview - presentation
PDF
Complete Guide to Website Development in Malaysia for SMEs
Digital Systems & Binary Numbers (comprehensive )
Ableton Live Suite for MacOS Crack Full Download (Latest 2025)
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
Time Tracking Features That Teams and Organizations Actually Need
wealthsignaloriginal-com-DS-text-... (1).pdf
Topaz Photo AI Crack New Download (Latest 2025)
iTop VPN Crack Latest Version Full Key 2025
Trending Python Topics for Data Visualization in 2025
DNT Brochure 2025 – ISV Solutions @ D365
chapter 5 systemdesign2008.pptx for cimputer science students
Wondershare Recoverit Full Crack New Version (Latest 2025)
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
Cost to Outsource Software Development in 2025
Why Generative AI is the Future of Content, Code & Creativity?
Autodesk AutoCAD Crack Free Download 2025
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
AI-Powered Threat Modeling: The Future of Cybersecurity by Arun Kumar Elengov...
Introduction to Windows Operating System
assetexplorer- product-overview - presentation
Complete Guide to Website Development in Malaysia for SMEs
Ad

Assembly Language Tutorials for Windows - 04 Data Transfers Part-3