An open API service indexing awesome lists of open source software.

https://github.com/fcbyk/hello-world

This is where the story begins
https://github.com/fcbyk/hello-world

Last synced: over 1 year ago
JSON representation

This is where the story begins

Awesome Lists containing this project

README

          

这是一个写练习代码和笔记的库

```asm
section .data
msg db 'Hello, World!', 0

section .text
global _start

_start:
mov eax, 4
mov ebx, 1
mov ecx, msg
mov edx, 13
int 0x80

mov eax, 1
xor ebx, ebx
int 0x80
```