About 16,700,000 results
Open links in new tab
  1. Difference between .equ and .word in ARM Assembly?

    Feb 7, 2014 · I am curious - What is the difference between .equ and .word directives in ARM assembly, when defining constants?

  2. Difference between == and EQU operator? - Stack Overflow

    Jan 19, 2022 · If EQU finds that the two things being compared are valid integers (in octal, decimal, or hexadecimal), then an integer comparison will be performed. For example, if 0x64 …

  3. What's the difference between equ and db in NASM?

    Jan 20, 2022 · equ makes the symbol in the current line have st_shndx == SHN_ABS magic value in its symbol table entry. Instead of outputting a byte to the current object file location, it …

  4. EQU vs DC.B. What is the difference? - Stack Overflow

    Jul 26, 2012 · The EQU directive is used to tell the assembler that you wish to have a named symbolic constant (often computed from other assembler values including other EQU …

  5. Symbol equivalent to NEQ, LSS, GTR, etc. in Windows batch files

    Nov 20, 2017 · There are the additional comparison operators EQU, NEQ, LSS, LEQ, GTR, GEQ with enabled command extensions. The angle brackets < and > are used on Windows …

  6. operators - x86 assembly equ vs = - Stack Overflow

    I am taking a class in x86 assembly language and it's starting to move rather fast. There is one thing that the book keeps doing without mentioning how it works, and that is using the equ and …

  7. LDR and EQU in ARM Assembly - Stack Overflow

    Jun 25, 2020 · EQU is a directive similar to define in C, it allows you to in this case take a value 0x20000000 and instead of typing that type the variable or name or string a and a pre …

  8. What does the dollar sign ($) mean in x86 assembly when …

    Apr 28, 2012 · For example, if we were writing a simple hello world type program, the .data section might contain something like: section .data msg db 'Enter something: ' len equ $ - msg …

  9. avr assembler: #define vs .equ, is it the same? - Stack Overflow

    May 4, 2014 · Is the avr-c command #define baudrate 9600 the same like the avr-asm command .equ BAUD = 9600 ??

  10. x86 16 - Assembly 8086 EQU directive - Stack Overflow

    Oct 31, 2016 · I'm having trouble just making clear EQU directive in assembler (8086). abc EQU xyz Does EQU literally swaps abc when found in code with xyz, whatever xyz represents, …