NASM - The Netwide Assembler
NASM Forum => Using NASM => Topic started by: KusaNoKaito on February 07, 2010, 04:42:00 AM
-
I recently began to migrate to NASM from other languages for the power and flexibility of assembler.
I have read elsewhere that it is possible to write gui apps for MS windows, but is it also possible to write GUIs for the x window system in linux?
Thanks and sorry if this is a stupid question.
-
Yes, it's totally possible. Not long ago I posted an update of Keith Kanios' X.INC file which is used in the process of developing XLib applications. If you want to do graphical linux apps, I suggest you read the XLib documentation and grab that file.
Keith's X.INC - http://www.asmcommunity.net/board/index.php?topic=29543.0
XLib Manual - http://tronche.com/gui/x/xlib/
Regards,
Bryant Keller
-
Thanks for the quick reply and documentation!
Looks as if i'll be using NASM as my primary language for open source development. ;D
-
No problem.
To be completely honest, other than "toys" I don't really do much XLib in NASM. I prefer to use C for my GUI stuff then call imported assembly routines from there. However, that's partly due to my view of GUI's as being nothing more than "decoration" and a completely useless extension to software. I regularly write console applications then create a front-end GUI for those console apps. But really, that's just a personal view and if you want to do GUI stuff in NASM, it is of course very possible (not really any harder either). :)