Memory address 0x0 to 0x1ffff. Dump over JTAG or built-in bootloader (if enabled).
Memory address 0x10000000 to 0x1001cbff. Dump over JTAG or built-in bootloader.
#include <furi.h> | |
#include <furi_hal.h> | |
void test1_app_init(); | |
uint32_t test1_app(); | |
void test1_app_test(); | |
void test1_app_init() { | |
printf("init\n"); | |
} |
Values indicate bit mask.
0x00000001
: boot type: 0
= with command, 1
= special bootCommand specified will be executed immediately after boot init (unverified), unless command is 0
, which will result in a completely normal boot.
0xe0000000
: 7
= special request, otherwise execute code out of address specified by RFCBITS// See https://aka.ms/new-console-template for more information | |
using System.Text.RegularExpressions; | |
string inFile = @"your_patch_file.c"; | |
string outDir = @"your_output_dir"; | |
Regex patternRegex = new Regex(@"; (.+?):\s+(\d+) (.*)"); | |
using StreamReader sr = File.OpenText(inFile); | |
Directory.CreateDirectory(outDir); |
If you're looking for Vital Bracelet (Digital Monster, Digivice -V-, Characters, Vital Hero) battle logic, please see here.
Each character on a BEM has three encounter chance percentages: one for phase 1-4, one for phase 5-7, and one for phase 8. For Dims and VBMs, there is no
Note that the first one appears to be a story unlock password. Not sure what | |
that means since I kind of skipped over the message box that displayed for it. | |
Original page for that is at https://www.takaratomy-arts.co.jp/specials/dqdai-pa/pw/ | |
6B8HY 10xやくそう | |
NUGBV 30xやくそう | |
LBKWF 30xやくそう | |
K5L2Z 30xやくそう | |
YWVYC 30xやくそう | |
VCGVU 30xやくそう |
If you're looking for Vital Bracelet BE battle logic, please see here.
Each Digimon on a Dim has two encounter chance percentages: one for when your current Digimon is a Rookie or Champion, and one for Ultimate or Mega. A
#!/bin/sh -e | |
start() { | |
cat "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq" > "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq" | |
cat "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq" > "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq" | |
} | |
stop() { | |
cat "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_boot_freq" > "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq" | |
cat "/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_boot_freq" > "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq" |