This file contains 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
#include "logger.hpp" | |
vea::Logger VEA_SIMPLE_LOGGER; | |
namespace vea { | |
const char* lvl_strings[] {"trace", "debug", "info", "warn", "fatal"}; | |
Logger::Logger(const std::string& name) : name(name) {} |
This file contains 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
async function applyDivineFury(token, tactor, tokenId, type, origin) { | |
let damage = ` + (1d6 + ${(args[1] / 2) | 0})[${type}]` | |
let duration; | |
if (game.combat) { | |
duration = { | |
startRound: game.combat.round, | |
rounds: 0, | |
turns: 1 | |
} |
This file contains 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
#include <fcntl.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
// None of these headers are available in xv6, in xv6 you only need to the | |
// "user.h" header | |
/** | |
* @brief Prints a region of memory to stdout as hex digits |
This file contains 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
module EdgeSync ( | |
input clk, | |
input nReset, | |
input in, | |
output rise, | |
output fall, | |
output logic out |
This file contains 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
if(NOT SKIP_VCPKG AND NOT DEFINED CMAKE_TOOLCHAIN_FILE) | |
include(FetchContent) | |
if(WIN32) | |
set(VCPKG vcpkg.exe) | |
elseif(LINUX) | |
if(EXISTS "/etc/alpine-release") | |
set(VCPKG vcpkg-musl) | |
else() | |
set(VCPKG vcpkg-glibc) |
This file contains 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
module UartTx ( | |
input clk, | |
input nReset, | |
input logic [7:0] data, | |
input valid, | |
output out, | |
output busy, |
This file contains 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
#include <algorithm> | |
#include <array> | |
#include <concepts> | |
#include <cstdint> | |
#include <cstring> | |
#include <iterator> | |
#include <numeric> | |
#include <print> | |
#include <span> | |
#include <vector> |
OlderNewer