From 3eae1d082fbd86d48a8f9ee2c57b8931a468cb59 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 21 Nov 2019 05:04:37 +0100 Subject: Initial commit (i cant even compile this shit) --- ft_write.s | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 ft_write.s (limited to 'ft_write.s') diff --git a/ft_write.s b/ft_write.s new file mode 100644 index 0000000..a21ec45 --- /dev/null +++ b/ft_write.s @@ -0,0 +1,4 @@ +_ft_write: + mov eax, 4 + int 0x80 + ret -- cgit