Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/00nx/00nx
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/00nx/00nx
- Owner: 00nx
- Created: 2024-05-13T05:27:10.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-12T07:38:34.000Z (2 months ago)
- Last Synced: 2024-10-29T05:31:40.981Z (about 2 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```assembly
section .data
message db 'spinnin back', 0section .text
global _start_start:
mov eax, 4
mov ebx, 1
mov ecx, message
mov edx, 9
int 0x80mov eax, 1
xor ebx, ebx
int 0x80
```