用于Mac OS X的汇编GUI编程
我想知道如何为Mac OS X做一个简单的汇编程序,在屏幕上显示一个窗口,并在窗口上放置一些彩色文本。 代码可能会调用一些Carbon或Cocoa API。 我需要一些nasm sintaxe的代码。
我在http://snipplr.com/view/29150/assembly-code-nasm-for-mac--hello-world中看到了可以正常工作的下一个代码,但它不是图形。
; Hello World in assembly for mac ; ; nasm -f macho hello.asm ; ld -e _start -o hello hello.o section .text global _start ;must be declared for linker (ld) _syscall: int 0x80 ;system call ret _start: ;tell linker entry point push dword len ;message length push dword msg ;message to write push dword 1 ;file descriptor (stdout) mov eax,0x4 ;system call number (sys_write) call _syscall ;call kernel add esp,12 ;clean stack (3 arguments * 4) push dword 0 ;exit code mov eax,0x1 ;system call number (sys_exit) call _syscall ;call kernel ;we do not return from sys_exit, ;there's no need to clean stack section .data msg db "Hello, world!",0xa ;our dear string len equ $ - msg ;length of our dear string
谢谢你的帮助
根据之前的回答,这不是Carbon的要求,但它可以帮助您在追求高尚的过程中前进一步:
http://cocoawithlove.com/2010/09/minimalist-cocoa-programming.html
你可以调用的API碳与call
是这样的:
call _CreateNewWindow
你也可以传递参数,但我不确定如何去做。 可能在call
之前按相反的顺序push
堆栈:
push arg4
push arg3
push arg2
push arg1
call _CreateNewWindow
你可以看看你的C代码如何编译成汇编,如下所示:
$ clang myCarbonCode.c -S -O -o myCarbonCode.s
链接地址: http://www.djcxy.com/p/86851.html