如何在内置组装gcc中从stdin读取和写到stdout,就像我们在NASM中所做的那样:mov ecx, buffer ;buffer is a data word initialised 0h in section .datamov eax, 03 ;readint 0x80mov eax, 04 ;writeint 0x80#include<
; Eax currently has the return value from linux system call..ecx int 80h ; Tell linuxkoray@koray-VirtualBox:~/asm/buffasm$ gcc -o buffbuff.o
koray@koray-VirtualBox:~/as
我已经做了一个很好的小程序,它是我的linux操作系统原生的,但我认为它在我的Windows机器上也是足够有用的。我也不喜欢动态分配内存,因为我只是想让程序在Windows和linux操作系统上运行,这意味着MS代码必须很好地处理nix代码。char* and TCHAR*#if defined (__linux有什么更美观的点子吗?
我没有那么多知识,所以