Difference between revisions of "Glossary/it"

From Lazarus wiki
Jump to navigationJump to search
(New page: {{Glossary}} Questa pagina non sarà mai completa. Si incoraggia i volontari a continuare ad aggiungere materiale: * Relativo a questo sito * Relativo a Freepascal * Relativo a Lazarus _...)
 
 
(One intermediate revision by the same user not shown)
Line 22: Line 22:
 
  LD a,b # move the contents of location a into location b
 
  LD a,b # move the contents of location a into location b
 
into a binary sequence such as <code>01110010</code> which the machine can execute. Assembly language is the list of codified instructions which a programmer can write which the assembler translated into machine code. An assembler differs from a [[Glossary#Compiler|Compiler]] by being processor-specific (ie different assemblers for i386, MC68000, ARM processors etc) and by being much more low-level: it deals with very specific instructions to move data and perform detailed arithmetic. Many compilers (including [[Glossary#FreePascal|FreePascal]]) allow the programmer to embed Assembler sections within the high-level source code; such sections are, of course, only useful using the processor for which they are intended, whereas a [[Glossary#Compiler|Compiler]] can write programs which will work on a variety of different processors. -->
 
into a binary sequence such as <code>01110010</code> which the machine can execute. Assembly language is the list of codified instructions which a programmer can write which the assembler translated into machine code. An assembler differs from a [[Glossary#Compiler|Compiler]] by being processor-specific (ie different assemblers for i386, MC68000, ARM processors etc) and by being much more low-level: it deals with very specific instructions to move data and perform detailed arithmetic. Many compilers (including [[Glossary#FreePascal|FreePascal]]) allow the programmer to embed Assembler sections within the high-level source code; such sections are, of course, only useful using the processor for which they are intended, whereas a [[Glossary#Compiler|Compiler]] can write programs which will work on a variety of different processors. -->
 +
 +
 +
{{AutoCategory}}
 +
[[Category:Main/it]]
 +
[[Category:Glossary/it|!]]

Latest revision as of 23:49, 25 July 2015

Deutsch (de) English (en) español (es) français (fr) italiano (it) 中文(台灣)‎ (zh_TW)

Questa pagina non sarà mai completa. Si incoraggia i volontari a continuare ad aggiungere materiale:

  • Relativo a questo sito
  • Relativo a Freepascal
  • Relativo a Lazarus


Contents

# A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

#

A

Assembler, Linguaggio Assembly

Un assembler converte i simboli comprensibili dall'uomo (che rappresentano le istruzioni macchina) in istruzioni binarie che il computer può eseguire direttamente.