From 8edfcc4b1e36111d400b5f104a04001c66416426 Mon Sep 17 00:00:00 2001 From: "U-Fish-PC\\Daniel" Date: Sat, 12 Oct 2013 14:40:37 -0400 Subject: All music and sfx --- music/pokeredmusicdisasm/Stop.cpp | 47 --------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 music/pokeredmusicdisasm/Stop.cpp (limited to 'music/pokeredmusicdisasm/Stop.cpp') diff --git a/music/pokeredmusicdisasm/Stop.cpp b/music/pokeredmusicdisasm/Stop.cpp deleted file mode 100644 index de6aa062..00000000 --- a/music/pokeredmusicdisasm/Stop.cpp +++ /dev/null @@ -1,47 +0,0 @@ -#include -#include "Stop.h" -using namespace std; - -Stop::Stop() -{} - -Stop::Stop(unsigned char* byte) -{ - Parse(byte); -} - -bool Stop::IsValid(unsigned char* byte) -{ - if(byte[0] == 0xFF) - { - error = false; // Unblock assembling - return true; - } - else - { - error = true; // Block assembling - return false; - } -} - -string Stop::GenAsm() -{ - string tmpRet = AbstractData::GenAsm(); - if(tmpRet != "") return tmpRet; - - stringstream tmpAsmOut; - tmpAsmOut << "mus_end"; - return tmpAsmOut.str(); -} - -bool Stop::Parse(unsigned char* byte) -{ - if(AbstractData::Parse(byte)) return false; - return true; -} - -unsigned int Stop::Arguments() -{ - // No Arguments - return 0; -} \ No newline at end of file -- cgit v1.3.1-sl0p