Compare commits

..

No commits in common. "2e77f210742dc0268d976ed1d82f5a95883f3909" and "cb63e579b8f1c60203ebbc3eb32c6bd27e8d4fee" have entirely different histories.

7 changed files with 0 additions and 36 deletions

0
.gitignore vendored
View File

View File

@ -1,4 +0,0 @@
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y vim gcc indent clang clang-format gdb binutils nasm xxd llvm lld
WORKDIR /dmzOS
ENTRYPOINT [ "bash" ]

View File

@ -1,7 +0,0 @@
set nobackup
set nowritebackup
set noswapfile
set autoread
set number relativenumber
autocmd BufWritePost *.[ch] exec "!indent -kr -nut % && rm %~"

Binary file not shown.

Binary file not shown.

View File

@ -1,12 +0,0 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
if (argc < 2) {
printf("Please provide at least one argument\n");
exit(1);
};
printf("Hello, C!\n");
return 0;
}

View File

@ -1,13 +0,0 @@
version: '3.8'
services:
c_toolchain:
build:
context: ./Dockerfiles
dockerfile: dockerfile.c_toolchain
container_name: c_toolchain
tty: true
stdin_open: true
volumes:
- ./dmzOS:/dmzOS
- ./config/.vimrc:/root/.vimrc