- Base System
base
base-devel
linux
linux-firmware
linux-headers
dkms
amd-ucode
- Bootloader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Start common.asm | |
;; | |
;; A file containing macros that may be useful to include. Mostly contains | |
;; basic operations that would be included on a modern architecture. | |
; REGISTER DEFINITIONS: ---------- | |
#ifnc LR | |
#constant LR R7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sourced on shell startup | |
# Also sourced on login since .bash_profile calls this | |
# Add extra binaries as needed | |
export PATH="${HOME}/.nimble/bin/:${PATH}" | |
# Set up Java's environment | |
export JAVA_HOME="/usr/lib/jvm/default-runtime" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
// We will use Java for this project | |
id 'application' | |
id 'java' | |
id 'org.openjfx.javafxplugin' version '0.0.9' | |
// Use Checkstyle for linting | |
id 'checkstyle' | |
// Integrate with VS Code | |
id 'eclipse' | |
} |