Compare commits
No commits in common. "8ae1a6e8768e4ec48a2ea6f80360bf9c843d33f8" and "a05124885e0901e5a4f5fb4ce332ea1c49b85098" have entirely different histories.
8ae1a6e876
...
a05124885e
2
Makefile
2
Makefile
@ -6,7 +6,7 @@ SRC := $(wildcard $(SRCDIR)/*.asm)
|
||||
OBJ := $(patsubst $(SRCDIR)/%.asm,$(OBJDIR)/%.o,$(SRC))
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = -g
|
||||
CFLAGS = -g -no-pie
|
||||
|
||||
AS = nasm
|
||||
ASFLAGS = -f elf64 -g
|
||||
|
@ -7,5 +7,4 @@ char *ft_strcpy(char *dest, const char *src);
|
||||
size_t ft_strlen(const char *str);
|
||||
int ft_strcmp( const char *first, const char *second);
|
||||
ssize_t ft_write(int fd, const void *buf, size_t count);
|
||||
char *ft_strdup(const char *s);
|
||||
ssize_t ft_read(int fildes, void *buf, size_t nbyte);
|
||||
char *ft_strdup(const char *s);
|
@ -1,25 +0,0 @@
|
||||
extern __errno_location
|
||||
|
||||
section .text
|
||||
global ft_read
|
||||
ft_read:
|
||||
|
||||
xor rax, rax
|
||||
|
||||
syscall
|
||||
|
||||
cmp rax, 0
|
||||
jne syscall_failed
|
||||
|
||||
ret
|
||||
|
||||
syscall_failed:
|
||||
|
||||
neg rax
|
||||
mov rbx, rax
|
||||
|
||||
call __errno_location wrt ..plt
|
||||
|
||||
mov [rax], rbx
|
||||
mov rax, -1
|
||||
ret
|
@ -10,8 +10,8 @@ section .text
|
||||
mov rbx, rdi
|
||||
mov rdi, rax
|
||||
|
||||
call malloc wrt ..plt
|
||||
|
||||
call malloc
|
||||
|
||||
cmp rax, 0
|
||||
je error
|
||||
|
||||
|
@ -1,23 +1,6 @@
|
||||
extern __errno_location
|
||||
|
||||
section .text
|
||||
global ft_write
|
||||
ft_write:
|
||||
mov rax, 1
|
||||
|
||||
syscall
|
||||
|
||||
cmp rax, 0
|
||||
jne syscall_failed
|
||||
|
||||
ret
|
||||
|
||||
syscall_failed:
|
||||
|
||||
neg rax
|
||||
mov rbx, rax
|
||||
|
||||
call __errno_location wrt ..plt
|
||||
mov [rax], rbx
|
||||
mov rax, -1
|
||||
ret
|
@ -78,5 +78,4 @@ int main()
|
||||
printf("\n");
|
||||
|
||||
ft_write(1, "bozo\n", 5);
|
||||
printf("%s\n", ft_strdup("sdsfsd"));
|
||||
}
|
Loading…
Reference in New Issue
Block a user