我想在我的 Windows 7 电脑上用 asm 编程。
我对asm有所了解。
我想知道我需要使用的工具以及如何对图形端进行编程(以创建视频游戏)。
FASM (aka FlatAsembler) - it contains everything you need to program in assembly language for Windows or Linux, including a lightweight IDE.
Fresh IDE - It is the same as FASM but with advanced IDE for visual and RAD development.
Each of these two packages are self-sufficient and there is documentation and examples inside.
Maybe the only other tool you need is a good debugger: Olly debugger is the best for Windows. And as long as there is no debugger of comparable quality for any other OS then it is the best user mode debugger in the world. :)
About the graphics and game programming - go to the FASM message board, there is a lot of discussions on this subject, sources and friendly community to help you
Important Note 1 - I am a little bit biased, Fresh IDE is my project, but I started it because FASM is really the best assembler ever made and it deserves good RAD IDE.
Important Note 2 - There is another good assembler - NASM - but it is not so good for beginners or fully assembly written projects.