Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/00nx/00nx


https://github.com/00nx/00nx

Last synced: 29 days ago
JSON representation

Awesome Lists containing this project

README

        


v4ms

```assembly
section .data
message db 'spinnin back', 0

section .text
global _start

_start:
mov eax, 4
mov ebx, 1
mov ecx, message
mov edx, 9
int 0x80

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