- Oct 18, 2023
-
-
Michal Sojka authored
Remove hash character from make include directive See merge request !37
-
David, Tomáš authored
`#include` is C directive that would be treated as comment in make.
-
Jan Chudoba authored
-
- Oct 17, 2023
-
-
Michal Sojka authored
-
Michal Sojka authored
-
- Oct 12, 2023
-
-
Petr Stepan authored
-
Michal Sojka authored
-
- Oct 09, 2023
-
-
Michal Sojka authored
Closes #273
-
- Oct 08, 2023
-
-
Michal Sojka authored
pravopisna chyba fixed bash.md See merge request !36
-
Batuev, Egor authored
-
- Oct 05, 2023
-
-
Petr Stepan authored
-
Petr Stepan authored
-
Jiri Vlasak authored
Resolves #271 #272
-
- Sep 26, 2023
-
-
Petr Stepan authored
-
Michal Sojka authored
-
- Sep 25, 2023
-
-
Michal Sojka authored
-
Michal Sojka authored
-
- Sep 20, 2023
-
-
Michal Sojka authored
-
- Jan 13, 2023
-
-
Michal Sojka authored
-
Michal Sojka authored
nova: Makefile: Use `$(MAKE)` instead of `make` See merge request !35
-
- Jan 12, 2023
-
-
Matěj Kafka authored
This allows CLion to correctly parse `make` output and configure its intellisense, and it's also the recommended way to recursively invoke `make`.
-
Michal Sojka authored
-
- Jan 02, 2023
-
-
Michal Sojka authored
Viz #260.
-
- Dec 15, 2022
-
-
Michal Sojka authored
-
Michal Sojka authored
-
- Dec 08, 2022
-
-
Michal Sojka authored
-
Michal Sojka authored
-
- Dec 07, 2022
-
-
Jiri Vlasak authored
-
- Dec 01, 2022
-
-
Michal Sojka authored
-
Michal Sojka authored
-
- Nov 30, 2022
-
-
Matěj Kafka authored
-
Matěj Kafka authored
-
- Nov 28, 2022
-
-
Michal Sojka authored
-
- Nov 24, 2022
-
-
Michal Sojka authored
Combining compiler options -fstack-protector and -nostdlib results in a program which always segfaults. Because some Linux distributions enable stack protector by default, we should explicitly disable it. Closes #252
-
Michal Sojka authored
-
- Nov 21, 2022
-
-
-
Original masks split the address to 12+20 bits, but we actually want 10+22. `Ptab::remap` should map a single 4MB page. On x86, that's a 10 bit page directory index, and 22 bit offset inside the page. The current NOVA code splits the address as a 12 bit index + 20 bit offset, which is not correct, and afaict only works because the mapped addresses all have zeros in the 2 bits that are incorrectly split. Upstream, the whole file is changed significantly, and the method Hptp::map, which seems to be used for the same temporary mappings as Ptab::remap, uses 4kB pages: https://github.com/udosteinberg/NOVA/blob/arm/src/x86_64/ptab_hpt.cpp#L58
-
Michal Sojka authored
-
-