Skip to content
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.

Add winksplorer to credits #14

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/functions/credits.asm
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ section .data
; xrc2 section
msg_xrc2: db ` ___ \r\n |__ \\ \r\n__ ___ __ ___ ) | Role: iDOS Owner\r\n\\ \\/ / '__/ __| / / Other projects: ChaOS, GoOS, WebWatcher, 9xCode\r\n > <| | | (__ / /_ About: Just an average coder that codes stuff.\r\n/_/\\_\\_| \\___|____| Links: www.mobren.net\r\n\0`

; winksplorer section
msg_wink: db ` _ _ \r\n__ _(_)_ __ | | __ Role: iDOS Contributor\r\n\\ \\ /\\ / / | '_ \\| |/ / Other projects: snbox, yadyn, library, DOS#BASH, fetchOS \\ V V /| | | | | < About: A coder who codes code that was coded by a coder. \\_/\\_/ |_|_| |_|_|\\_\\ Links: www.winksplorer.net\r\n\0`

cmd_credits: db `credits\0`

section .text
Expand All @@ -20,11 +23,13 @@ section .text
cwrite msg_xrc2, $0E
write nl
cwrite msg_ekeleze, $0C
write nl
cwrite msg_wink, $09

mov cl, 0

.loop:
cmp cl, 10
cmp cl, 4
je .ret

write nl
Expand All @@ -35,4 +40,4 @@ section .text
.ret:
ret

ret
ret
Loading