Quantum
e50fb2de2c
Mostly stolen from https://github.com/avdgrinten/riscv-toy-os Changed load address to 0x45000000 so it would run on real hardware Played around with GPIO and the watchdog
117 lines
1.2 KiB
Text
117 lines
1.2 KiB
Text
### C ###
|
|
# Prerequisites
|
|
*.d
|
|
|
|
# Object files
|
|
*.ko
|
|
*.elf
|
|
|
|
# Linker output
|
|
*.ilk
|
|
*.map
|
|
*.exp
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Libraries
|
|
*.lib
|
|
*.a
|
|
*.la
|
|
*.lo
|
|
|
|
# Shared objects
|
|
*.so
|
|
*.so.*
|
|
*.dylib
|
|
|
|
# Executables
|
|
*.out
|
|
*.app
|
|
*.i*86
|
|
*.x86_64
|
|
*.hex
|
|
|
|
# Debug files
|
|
*.dSYM/
|
|
*.su
|
|
*.idb
|
|
*.pdb
|
|
|
|
# Kernel Module Compile Results
|
|
*.mod*
|
|
*.cmd
|
|
.tmp_versions/
|
|
modules.order
|
|
Module.symvers
|
|
Mkfile.old
|
|
dkms.conf
|
|
|
|
### C++ ###
|
|
# Prerequisites
|
|
|
|
# Compiled Object files
|
|
*.slo
|
|
|
|
# Precompiled Headers
|
|
|
|
# Compiled Dynamic libraries
|
|
|
|
# Fortran module files
|
|
*.mod
|
|
*.smod
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
|
|
# Executables
|
|
|
|
### Meson ###
|
|
# subproject directories
|
|
/subprojects/*
|
|
!/subprojects/*.wrap
|
|
|
|
# Meson Directories
|
|
meson-logs
|
|
meson-private
|
|
|
|
# Meson Files
|
|
meson_benchmark_setup.dat
|
|
meson_test_setup.dat
|
|
sanitycheckcpp.cc # C++ specific
|
|
sanitycheckcpp.exe # C++ specific
|
|
|
|
# Ninja
|
|
build.ninja
|
|
.ninja_deps
|
|
.ninja_logs
|
|
|
|
# Misc
|
|
compile_commands.json
|
|
|
|
### Vim ###
|
|
# Swap
|
|
[._]*.s[a-v][a-z]
|
|
!*.svg # comment out if you don't need vector files
|
|
[._]*.sw[a-p]
|
|
[._]s[a-rt-v][a-z]
|
|
[._]ss[a-gi-z]
|
|
[._]sw[a-p]
|
|
|
|
# Session
|
|
Session.vim
|
|
Sessionx.vim
|
|
|
|
# Temporary
|
|
.netrwhist
|
|
# Auto-generated tag files
|
|
tags
|
|
# Persistent undo
|
|
[._]*.un~
|
|
|
|
# Cache
|
|
.cache/
|
|
|
|
### Build dir ###
|
|
build/
|