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
- Host: GitHub
- URL: https://github.com/fcbyk/hello-world
- Owner: fcbyk
- Created: 2024-05-26T15:26:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-09T23:56:27.000Z (over 1 year ago)
- Last Synced: 2025-02-10T00:25:21.680Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://hello.fcbyk.com/
- Size: 1.04 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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
```