- 47
- 12 316
Abdul Qadeer Bilal (AQ)
Приєднався 8 лип 2014
Відео
Lab 13 (Improved Video) - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 134Місяць тому
Topics: C interfacing with Assembly Language. . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0
Final Lab - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 232Місяць тому
Topics: C interfacing with Assembly language . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . Sample Code: get in the link above or comment me
Lab 12 - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 170Місяць тому
Topics: Multiplication and Division in Assembly Language. . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . Sample Code: TITLE ; Name: ; Date: ; ID: ; Description: INCLUDE Irvine32.inc INCLUDELIB Irvine32.lib ; these two lines are only necessary if you're not using Visual Studio INCLUDELIB kernel32.lib INCLUDELIB user32.l...
Lab 11 - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 226Місяць тому
Topics: Basic Conditional Statements, If/else, taking inputs from users on the console: . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . Sample Code 01: TITLE ; Name: ; Date: ; ID: ; Description: INCLUDE Irvine32.inc INCLUDELIB Irvine32.lib ; these two lines are only necessary if you're not using Visual Studio INCLUDELIB k...
Lab 10 - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 3252 місяці тому
Topics: Advanced Procedures, Local Variables . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . Sample Code 01: TITLE ; Name: ; Date: ; ID: ; Description: INCLUDE Irvine32.inc INCLUDELIB Irvine32.lib ; these two lines are only necessary if you're not using Visual Studio INCLUDELIB kernel32.lib INCLUDELIB user32.lib .data m...
Lab 09 - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 3132 місяці тому
Topics: Procedures and Stack Basics. . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . Code: TITLE ; Name: ; Date: ; ID: ; Description: INCLUDE Irvine32.inc INCLUDELIB Irvine32.lib ; these two lines are only necessary if you're not using Visual Studio INCLUDELIB kernel32.lib INCLUDELIB user32.lib .data ; data declarations g...
Easily Use VS Code for Assembly Code
Переглядів 372 місяці тому
Link to Download Assembly Code Sample: github.com/jere-mie/easy-masm/. .. Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 .
Lab 07,08 - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 3143 місяці тому
Topics: Indirect Addressing, JMP, LOOP . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . CODE: ;OFFSET Operator ;PTR Operator ;TYPE Operator ;LENGTHOF Operator ;SIZEOF Operator .386 .model flat, stdcall .stack 4096 include Irvine32.inc ; Data segment to make variables .data msg1 db "outer loop",0 msg2 db "inner loop", 0 a...
Lab 06 - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 3693 місяці тому
Topics: ;OFFSET Operator . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . . ;PTR Operator ;TYPE Operator ;LENGTHOF Operator ;SIZEOF Operator . Sample Code: ;OFFSET Operator ;PTR Operator ;TYPE Operator ;LENGTHOF Operator ;SIZEOF Operator .386 .model flat, stdcall .stack 4096 include Irvine32.inc ; Data segment to make va...
Lab 05 - Assembly Language for x86 Processors by KIP R. IRVINE \
Переглядів 4053 місяці тому
Topics: Direct Offset Operands and Arrays Status Flags. . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . Sample Code: ; Direct Offset Operands ; Status Flags .386 .model flat, stdcall .stack 4096 include Irvine32.inc ; Data segment to make variables .data myarray BYTE 10h, 12h, 13h, 15h WordArray WORD 1000h, 1800h, 1125h...
Lab 03, 04 - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 3344 місяці тому
Topics: WORD, DWORD, MOVSX, MOVZX . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . CODE: ; Arithematic Expression ; (20 30) - (10 15) .386 .model flat, stdcall .stack 4096 include Irvine32.inc ; Data segment to make variables .data v1 sword -10 v2 dword 20 ; code segment starts here .code main proc movsx eax, v1 add eax,...
Lab 02 - Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 3644 місяці тому
Topic: How to use Variables, Integer Constants and Strings in Assembly Language. . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . Sample Code: ; Arithematic Expression ; (20 30) - (10 15) .386 .model flat, stdcall .stack 4096 include Irvine32.inc ; Data segment to make variables .data message db "Result is: ",0 var1 db 2...
How to Start Visual Studio Program for Assembly Language for x86 Processors by KIP R. IRVINE
Переглядів 5814 місяці тому
Visit link to Download Resources: asmirvine.com/gettingStartedVS2022/index.htm . . Material Link: www.dropbox.com/scl/fi/svix7mcox7zsr3t0q9z0f/COAL.zip?rlkey=zohr8za2ejpn707jx1zxreki9&st=2xsactru&dl=0 . . Sample Code: ; AddTwo.asm - adds two 32-bit integers. ; Chapter 3 example .386 .model flat,stdcall .stack 4096 ; (ignore it) ExitProcess proto,dwExitCode:dword include Irvine32.inc ; Include t...
How to Use Mendeley
Переглядів 712 роки тому
great sir
What she taking a risk during business???
Sir please 5th chapter bhi karwa dyn i request you please sir
it have 16 units plz upload the leacturs
Assalm o alikum sir kindly upload more lectures of enterprenuship david h holt
Good bro
Kindly sir upload the lectures of GAT test for NTU
Ustad G CS7 walon ky b lec bna dety kaash aap
BlueStacks sucks
<3
Nice efforts
Thanks sir g
Thanks buddy you made it easy for me.
baqi v
XTC Craze