assembly

What is a build? в.NET?

What is an assembly in .net? Here, for example, I understand .exe or .dll files are assemblies. You can only connect namespac ... till connect the System.Text.RegularExpressions namespace. Or did Richter mean that that assembly contains all the types FCL?

Mapping video card memory for access via Intel compatible x86 processor

Thinking of x86 Intel compatible computers, without considering the facilities provided by modern operating systems, anyone w ... he answer involves the Linux source code, I would ask, please, to indicate the version, the file and the corresponding lines.

Can I run an image do.NET Native directly?

I compiled my executable in C # to a .NET Native image using ngen.exe, i have the file location, but when I go to run Windows ... d" without any dependency. If I can't run the image, I can decompile your code to recompile to C++ and compile in Windows32?

Isolate processor to run only my program

Has how do I isolate the processor to run only my program in C? Is another didactic and academic question passed by my A. I. ... is possible for Windows to stop all processes to make only that calculation, the OS will not give Dick? And how do I do that?

How does a computer understand binary code?

How does a computer understand binary code? How was binary code created and who created it?

The first programming language

Until the time when computers were purely mechanical and were programmed by punched cards I understand how it works. Then, ... t of an assembly is another file in text format with 0's and 1's only? Or are electrical impulses sent to the valved machine.

Doubt in replacing character in string assembly (MIPS)

I have to make a code in assembly mips that requests a sentence and if the sentence contains the character - it is replaced ... li $v0, 4 # Imprimi a string syscall end: li $v0, 10 # Encerra o programa syscall

Would you need to have another programming language to create assembler?

Would you need to have another programming language to create assembler? If so, which one? If not, what could you do to get s ... y programming language and its Assembler compiler also programmed with another programming language? If so, what would it be?

How to extract hexadecimal code from an executable compiled with nasm?

I have an executable, created in assembly language and compiled with NASM. Is there a way to get the value, in hexadecimal, ... (" "); } if (c % 16 == 15) { printf("\n"); } } printf("\n"); free(buffer); }

result of subtracting numbers from 32 to 64

I am learning to program in assembly and I have a problem which is the following: I have a result of a 32-bit number subtraction, and it has to return a 64-bit number. Note: I'm using a 32-bit linux VM

What is assembler?

I always read things related to assembler and get confused. At first I thought this was a mess and that assembler was the same thing as assembly. But it seems that's not it. What is assembler? And what is your relationship with assembly?

How does it work and what is the syntax of machine code? [closed]

closed . This question needs to be more objective and is not currently accepting answers. ... an Assembly compiler that opens a message box saying something. Converted from hexadecimal to text by MS Windows Notepad:

What is symbolic language in Assembly context

Performing a Computer Organization list I came across the following Question: Rewrite the programs written in assembly lang ... ng is reported, how would I solve this ?!? Note: I don't want them to do the activity, I want to understand how I can do it.

How to convert string lowercase to uppercase in Assembly?

I made this code that reads a sentence and determines if the first letter is uppercase or not, now I have to sweep the whole ... mov eax, 4 ; Servico (print) int 0x80 ; Executa (exibe) ret ; Devolve ao chamador

Visual Studio - managing locally registered dll publication from homologation and production environment

I'm working with a banco Itaú Dll (itauCripto.dll ), the documentation requires it to be registered locally on the machine ru ... dio publishes the project it is getting lost in this way. Can anyone say what is wrong or how can I make this path relative?

repeat structure (while) conversion in C to mips assembly

Suppose that i and k correspond to the registers $s3 and $s5, and the basis of the array save be in $s6. What code assembly MIPS corresponds to this code segment C ? while( s a v e [ i ] == k ) i += 1 ;

What are registrars and what is their basic operation?

I am reading a book about Assembly in order to better understand how a low-level language works, this will help me to more ef ... re any relationship between RAM and registers? The book I'm reading is Assembly Language for x86 Processors (Sixth Edition).

How to check if the character I typed is a letter or number in MIPS

I'm a beginner in MIPS programming (I use MARS), my teacher asked us to make a program where given 9 digits of a CPF it calcu ... works to read integer, so if I type a letter it stops immediately! From now on I thank you for any tip you have to give me!

What is Object Code?

What is Object Code? What is Object Code for? What is the process of translating object code to machine code called? I've se ... language C uses assembly as object code, is that right? So in this case we can call it a compilation or assembly process?

How to run inline assembly in a code with variables in C?

From an example of a book, I was able to run the following assembly (AT&T) code with gas, which returns a message with th ... ta I can't compile. How do I get the source above to compile and run similarly to assembly ? I'm grateful for your attention.