1 / 17

Assembly Language – 1

Assembly Language – 1. 1. Machine Language This is what the computer actually sees and deals with. Every command the computer sees is given as a number or sequence of numbers. 2. Assembly Language

arch
Télécharger la présentation

Assembly Language – 1

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Assembly Language – 1

  2. 1. Machine Language This is what the computer actually sees and deals with. Every command the computer sees is given as a number or sequence of numbers. 2. Assembly Language This is the same as machine language, except the command numbers have been replaced by letter sequences which are easier to memorize. Other small things are done to make it easier as well. 3. High-Level Language They are there to make programming easier. Assembly language requires you to work with the machine itself. High-level languages allow you to describe the program in a more natural language. A single command in a high-level language usually is equivalent to several commands in an assembly language.

  3. To study… - SELF-study • Syntax • Variables • Basic data movements and arithmetic instructions • Program organization – comprising code, data & stack • Assembly lang prog MUST be converted to a machine lang prog before it can be executed  by an assembler

  4. 1. Syntax • Assembly lang – low-level programming language • An assembly language is specific to a certain computer architecture, in contrast to most high-level programming languages, which generally are portable to multiple systems.

  5. Assembler • Assembly language programs are converted into executable machine code by a utility program referred to as an assembler, the conversion process being referred to as assembly or assembling the program. • Assembler  Microsoft Macro Assembler [MASM]

  6. Assembly lang • A program written in assembly language consists of a series of (mnemonic) processor instructions and meta-statements (known variously as directives, pseudo-instructions and pseudo-ops), comments and data. • Assembly lang. instructions usually consist of  an opcode mnemonic  followed by a list of data, arguments or parameters. These are translated by an assembler into machinelanguage instructions that can be loaded into memory and executed.

  7. name operation operand(s) ;comment START: MOVCX, 5 ;যা ইচ্ছা লিখ! ‘;’ দিও!

  8. Example • The instruction that tells an x86 processor to move an immediate 8-bit value into a register. • The binary code for this instruction: 10110 • followed by a 3-bit identifier for which register to use. The identifier for the ALregister is 000, • so the following machine code loads the AL register with the data01100001.

  9. 10110 000 01100001 InstructionAL data B061 InstructionAL data In HEX  • Intel assembly language provides the mnemonicMOV (an abbreviation of move) for instructions such as this • so the machine code above can be written as follows in assembly language, complete with an explanatory comment if required, after the semicolon. MOV AL, 61h ; Load AL with 97 decimal (61 hex)

  10. The Intel opcode 10110000 (B0h) copies an 8-bit value into the AL register; • while 10110001 (B1h) moves it into CL. • 10110010 (B2) does so into DL. MOV AL, 1h ; Load AL with immediate value 1 MOV CL, 5h ; Load CL with immediate value 5 MOV DL, 3h ; Load DL with immediate value 3

  11. -- MOV EAX, [EBX] ;Move the 4 bytes in memory at the address contained in EBX into EAX MOV [ESI+EAX], CL ;Move the contents of CL into the byte at address ESI+EAX • Transforming assembly language into machine code is the job of an assembler, and • The reverse can at least partially be achieved by a disassembler.

  12. PC to PC: vary… • Each computer architecture has its own machine language. • Computers differ • in the number and type of operations they support, • in the different sizes and numbers of registers, and • in the representations of data in storage. • While most general-purpose computers are able to carry out essentially the same functionality, • the ways they do so differ; • the corresponding assembly languages reflect these differences.

  13. .section .data • Anything starting with a period isn’t directly translated into a machine instruction. • Instead, it’s an instruction to the assembler itself. • …called assembler directives, or pseudo-operations because they are handled by the assembler & arenot actually run by the computer. • .section command breaks your program up into sections. • This command starts the data section, where you list any memory storage you will need for data.

  14. .section .text which starts the text section. The text section of a program is where the program instructions live.

  15. .globl _start • This instructs the assembler that _start is important to remember. • _start is a symbol, which means that it is going to be replaced by something else either during assembly or linking. • Symbols are generally used to mark locations of programs or data, so you can refer to them by name instead of by their location number

  16. _start: • It defines the value of the _start label. • A label is a symbol followed by a colon. • Labels define a symbol’s value. When the assembler is assembling the program, it has to assign each data value and instruction an address. Labels tell the assembler to make the symbol’s value be wherever the next instruction or data element will be. • This way, if the actual physical location of the data or instruction changes, you don’t have to rewrite any references to it - the symbol automatically gets the new value.

  17. Next is instruction! • MOV • ADD • . • . • .

More Related