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
$ espefuse.py summary | |
Connecting.... | |
Detecting chip type... ESP32-S3 | |
espefuse.py v3.3.2-dev | |
=== Run "summary" command === | |
EFUSE_NAME (Block) Description = [Meaningful Value] [Readable/Writeable] (Hex Value) | |
---------------------------------------------------------------------------------------- | |
Config fuses: | |
DIS_ICACHE (BLOCK0) Disables ICache = False R/W (0b0) |
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
diff --git a/src/DebuggerForm.cpp b/src/DebuggerForm.cpp | |
index 7e03c9e..b1df51a 100644 | |
--- a/src/DebuggerForm.cpp | |
+++ b/src/DebuggerForm.cpp | |
@@ -632,7 +632,7 @@ void DebuggerForm::createForm() | |
// add widgets | |
for (int i = 0; i < list.size(); ++i) { | |
- QStringList s = list.at(i).split(" ", Qt::SplitBehaviorFlags::SkipEmptyParts); | |
+ QStringList s = list.at(i).split(" ", QString::SplitBehavior::SkipEmptyParts); |
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
From 2913041b0dc763fcb324c718c338d91747cd4233 Mon Sep 17 00:00:00 2001 | |
From: h1romas4 <[email protected]> | |
Date: Wed, 4 May 2022 16:50:30 +0900 | |
Subject: [PATCH] support z88dk map symble file | |
--- | |
src/SymbolManager.cpp | 3 +++ | |
src/SymbolTable.cpp | 32 +++++++++++++++++++++++++++++++- | |
src/SymbolTable.h | 2 ++ | |
3 files changed, 36 insertions(+), 1 deletion(-) |
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
$ cat /proc/asound/USB/stream0 | |
Focusrite Scarlett Solo USB at usb-0000:00:1d.0-1.2, high speed : USB Audio | |
Playback: | |
Status: Stop | |
Interface 1 | |
Altset 1 | |
Format: S32_LE | |
Channels: 2 | |
Endpoint: 0x01 (1 OUT) (SYNC) |
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
From a6d60e1b9620975707728d80490d0ca9e4215cf1 Mon Sep 17 00:00:00 2001 | |
From: h1romas4 <[email protected]> | |
Date: Sat, 1 Jan 2022 21:06:16 +0900 | |
Subject: [PATCH] vgmwrite patched | |
--- | |
makefile | 4 +- | |
scripts/src/lib.lua | 2 + | |
src/devices/sound/ymfm_mame.h | 12 + | |
src/devices/sound/ymopm.cpp | 20 + |
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
#[allow(non_camel_case_types, dead_code, clippy::upper_case_acronyms)] | |
enum VGMChipType { | |
SN76489 = 0, | |
YM2413 = 1, | |
YM2612 = 2, | |
YM2151 = 3, | |
SEGA_PCM = 4, | |
RF5C68 = 5, | |
YM2203 = 6, |
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
diff --git a/src/DebuggerForm.cpp b/src/DebuggerForm.cpp | |
index 9283c94..be463e8 100644 | |
--- a/src/DebuggerForm.cpp | |
+++ b/src/DebuggerForm.cpp | |
@@ -621,7 +621,7 @@ void DebuggerForm::createForm() | |
// add widgets | |
for (int i = 0; i < list.size(); ++i) { | |
- QStringList s = list.at(i).split(" ", Qt::SkipEmptyParts); | |
+ QStringList s = list.at(i).split(" ", QString::SplitBehavior::SkipEmptyParts); |
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
{ | |
// .vscode/tasks.json | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Assemble", | |
"type": "shell", | |
"linux": { | |
"command": "zcc", | |
"args": [ |
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
use crate::console_log; | |
fn test() { | |
console_log!( | |
"unknown cmd at {:x}: {:x}", | |
self.vgm_pos - 1, | |
self.vgm_data[self.vgm_pos - 1] | |
); | |
} |
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
{ | |
"configurations": [ | |
{ | |
"name": "Linux", | |
"intelliSenseMode": "clang-x64", | |
"cStandard": "c11", | |
"cppStandard": "c++17", | |
"includePath": [ | |
"${workspaceFolder}/src/**", | |
"${workspaceFolder}/3rdparty/**", |