Most voted "assembly" questions
DO NOT use this tag to mark over . Net’s Assembly which has its own tag. Assembly Language (ASM) is a family of very low-level programming languages, just above machine code. Also specify a tag with the processor or instruction set your question is related, as well as the Assembler you are using.
Learn more…160 questions
Sort by count of
-
0
votes0
answers15
viewsI can’t create a executable in my Assembler code windows
ola personal do stackoverflow, I’m starting my studies in Assembly and I’m going through some beginner difficulties and would like you to help me. i wrote a code in ammbly, and when I create an…
assemblyasked 3 years, 3 months ago gabrielpsd15 1 -
0
votes0
answers13
viewsConditional deviation not working - Assembly
I went to write a little program in Assembly with the compiler NASM in Xubuntu, there is the code: section .data ;1 msg db "Olá" ;2 n1 db 10 ;3 n2 db 1 ;4 len equ $-msg ;5 ;6 section .text ;7 global…
-
-1
votes1
answer234
viewsAccess computer Bios source code
Is there any way to access the source code of my computer’s Bios? using Assembly or c?
-
-1
votes1
answer36
views8051 IDE for macOS
I wonder if there is an 8051 IDE for macOS, and if there is no way to make a run?
-
-1
votes1
answer448
viewsWhat is the difference between operating code (opcode) and instruction set (Instruction set)
What’s the difference between them? I know they both show commands that exist in each architecture.
-
-1
votes2
answers81
viewsWhat does the "retn" statement mean with an argument?
Is it possible to see return instructions with an argument, how this is done and how the return value is treated? It is to return an argument in the stack?…
-
-1
votes1
answer328
viewsHow to check if the character I typed is a letter or number in MIPS
I am a beginner in MIPS programming (I use MARS), my teacher asked us to do a program where given 9 digits of a CPF he calculates the last two digits of this CPF. The program is working, but my…
-
-3
votes1
answer1015
viewsHow to translate a program into C for Assembly?
How I interact between the two languages?
-
-5
votes1
answer155
viewsAssembly! insert characters and print the reverse
Hello, I’m a beginner in Assembly. I need to make a program that takes two characters and prints the reverse. Example: Receive: A B View:B A Someone can help me…
-
-5
votes2
answers489
viewsCan a regular expression become Assembly?
Regular expressions are known to be character patterns that associate character sequences in the text. Would it be possible to do the same for Assembly? Make there are expressions that would…