+ 1
assembly in visuall studio or othere environment
hi to all today i want to learn to programme with assembly language in windows 7 I have visual studio 2017 what is best and easy way for writing this code I don't have any ex[erience with assembly language I'm new to this field all my knowledge is about c++ and c# I hope you hint me
8 Answers
+ 2
You basically need to learn following stuff:
To start (required):
- CPU programming model â what registers there are, what are they used for
- Basic instructions â like mov, arithmetic ones, jumps, etc.
- Addressing types â basically, using registers as pointers
- Memory layout â segments, stack, heap, how PE file is loaded
- Calling conventions â how to pass arguments to functions, and how to return.
If you want to create Windows GUI applications (optional):
- Win API â creating and manipulating windows, files, etc.
Some advanced topics (optional):
- Advanced instructions â MMX, SSE, etc.
- x64 mode
- Protections rings, what you can and can not do
- System specific stuff â accessing ports, system memory layout.
+ 8
Assembly? Why would u wanna learn Assembly??
+ 4
@James, completely agree. Because before you know, you start writing code like this ;) :
https://code.sololearn.com/c61iziQqXr88/?ref=app
Still, learning assembler, is almost the same as learning the computer architecture + writing code.
+ 2
First of all, you'll need good knowledge of the computer architecture you want to write for. And a good book on assembly (or a datasheet if you want to target micro controllers).
As for the tools, you may use inline assembly in the C/C++ projects in Visual Studio. But if you want to learn to create programs completely in assembly, I would recommend to use simpler tools (just to avoid information overload). I used to use MASM and FASM, simple text editor, command line and OllyDbg, but it was long, long time ago.
Also, regarding Windows 7, you better avoid touching x64 and modern Windows API stuff at the start. Things may get over complicated very fast there.
And yes, why do you want to learn assembly? For what platforms, what kinds of programs you want to use assembly for?
0
because i know how to get address memory of variable in C # for char and int so i want to learn more about memory
0
yes but instaling is hard for me at first
0
yes but they focus on Linux i just want work with assembly in windows
0
I installed the GUI turbo assembler i hope to get more knowledge in this area