fcoreutils 0.22.0

High-performance GNU coreutils replacement with SIMD and parallelism
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
; flink.asm — modular dev build entry point
; This is a stub that delegates to the unified build for link.
; For development, use: nasm -f bin flink_unified.asm -o flink
section .text
global _start
extern asm_write, asm_write_stdout, asm_write_err, asm_exit
extern asm_strlen

_start:
    ; Stub: actual implementation is in flink_unified.asm
    mov     rdi, 0
    mov     rax, 60
    syscall