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 ghidra.program.model.lang import Register | |
from ghidra.program.model.scalar import Scalar | |
callee_save_regs = ['R12', 'R13', 'R14', 'R15'] | |
listing = currentProgram.getListing() | |
inst = getInstructionAt(currentAddress) | |
reg_vals = {} |
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
import struct | |
import sys | |
import os | |
with open(sys.argv[1], 'rb') as f: | |
v = struct.unpack('>i', f.read(4))[0] | |
_u1 = f.read(20) | |
num_entries = struct.unpack('>i', f.read(4))[0] | |
entries = [] | |
for _ in range(num_entries): |
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
//------------------------------------------------ | |
//--- 010 Editor v14.0 Binary Template | |
// | |
// File: FLM.bt | |
// Authors: ashduino101 | |
// Version: 1.1 | |
// Purpose: Binary template for FL Studio Mobile project files | |
// Category: Audio | |
// File Mask: *.flm | |
// ID Bytes: 31 30 4C 46 (10LF) |
This file has been truncated, but you can view the full file.
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
<!DOCTYPE html> | |
<!-- Licensed to the .NET Foundation under one or more agreements. --> | |
<!-- The .NET Foundation licenses this file to you under the MIT license. --> | |
<html> | |
<head> | |
<title>dnSpy-wasm</title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<script type="text/javascript"> |
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
//------------------------------------------------ | |
//--- 010 Editor v14.0 Binary Template | |
// | |
// File: FLP.bt | |
// Authors: ashduino101 | |
// Version: 1.0 | |
// Purpose: Binary template for FL Studio project files | |
// Category: Audio | |
// File Mask: *.flp | |
// ID Bytes: 46 4C 68 64 (FLhd) |