OpenBazaar Peer ID: QmZiy954xpAS2sHoQKQApLMpwWeY22zzgLFVRZweBiEWGE
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/usr/bin/python | |
import argparse | |
from os.path import isfile as filehere | |
REG_SIZE = 8 | |
REG_ADDR_SIZE = 4 | |
ROM_ADDR_SIZE = 8 | |
MAX_ARGS = 3 | |
OPCODE_SIZE = 3 | |
# Note: some of these are macros that allow representing data differently or formatting arguments differently |
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
// (c) Carson Bush 2022 | |
// This program is free software: you can redistribute it and/or modify it under the terms | |
// of the GNU General Public License as published by the Free Software Foundation, either | |
// version 3 of the License, or (at your option) any later version. | |
// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; | |
// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
// See the GNU General Public License for more details. | |
// You should have received a copy of the GNU General Public License along with this program. |
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
#!/usr/bin/env python | |
""" | |
Copyright (C) 2021 Hyperdriveguy | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. |
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
; Battle! Missionary (Called to Serve) | |
; No. 249 in the 1985 LDS Hymnbook | |
; Demixed by Hyperdriveguy | |
Music_MissionaryBattle: | |
musicheader 3, 1, Music_MissionaryBattle_Ch1 | |
musicheader 1, 2, Music_MissionaryBattle_Ch2 | |
musicheader 1, 3, Music_MissionaryBattle_Ch3 | |
Music_MissionaryBattle_Ch1: |
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
; We'll Bring The World His Truth - LDS Children's Songbook | |
; Demixed by Hyperdriveguy | |
Music_BringHisTruth: | |
musicheader 4, 1, Music_BringHisTruth_Ch1 | |
musicheader 1, 2, Music_BringHisTruth_Ch2 | |
musicheader 1, 3, Music_BringHisTruth_Ch3 | |
musicheader 1, 4, Music_BringHisTruth_Ch4 | |
Music_BringHisTruth_Ch1: |
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
; White Stripes - Seven Nation Army | |
; Demixed by Hyperdriveguy | |
Music_SevenNationArmy: | |
musicheader 4, 1, Music_SevenNationArmy_Ch1 | |
musicheader 1, 2, Music_SevenNationArmy_Ch2 | |
musicheader 1, 3, Music_SevenNationArmy_Ch3 | |
musicheader 1, 4, Music_SevenNationArmy_Ch4 | |
Music_SevenNationArmy_Ch1: |
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
#!/bin/sh | |
function prompt { | |
printf "[make:" | |
printf $(pwd) | |
printf "][" | |
if [ $? == 0 ] ; then | |
printf "" | |
else | |
printf $? | |
fi |
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
#!/usr/bin/python3 | |
import os, random | |
# Init screen | |
print("*************************************") | |
print("* W W W IIIIIIIII NNNN NNN *") | |
print("* W W W W III NNN NNN NNN *") | |
print("* W W IIIIIIIII NNN NNNN *") | |
print("*************************************") | |
print("") | |
print("Licensed under the LGPL 2.1") |
NewerOlder