Added Jenkins badges

This commit is contained in:
Alexander Rosenberg 2022-11-02 15:56:17 -07:00
commit a925fb4508
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730
3 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
cat: cat.o
ld -o cat cat.o
cat.o: cat.s
nasm -f elf64 cat.s
cat.o: cat.nasm
nasm -f elf64 cat.nasm
.PHONY: clean
clean:

View File

@ -1,5 +1,5 @@
# cat
[![Build Status](https://ci.zander.im/job/asm-cat/badge/icon?style=plastic&subject=Build)](https://ci.zander.im/job/asm-cat/)
[![Build Status](https://ci.zander.im/job/asm-cat/badge/icon?style=flat&subject=Build)](https://ci.zander.im/job/asm-cat/)
Posix compliant cat written in NASM Assembler for practice. This program
**ONLY** works on Linux.

View File