- 219
- Posts
- 17
- Years
- China,Xi'an
- Seen Jul 31, 2020
-v-I'm learning C++,so I made a simple tool for enlarge ROM.
Ya,you can use XSE,but someone may doesn't know how to(there should be a little...).
This tool is too simple to use.
Just drag the rom on this Enlarge.exe,and after a short time of black,it done~
Have fun^^
Maybe there'll be more simple tools in here~
Tec thing:
Ya,you can use XSE,but someone may doesn't know how to(there should be a little...).
This tool is too simple to use.
Just drag the rom on this Enlarge.exe,and after a short time of black,it done~
Have fun^^
Maybe there'll be more simple tools in here~
Tec thing:
Code:
#include <fstream>
int main(int argc, char* argv[]){
using namespace std;
FILE *fp;
if(fp=fopen(argv[1],"ab")){
int *a= new int[4194304];
fwrite(a,sizeof(a),4194304,fp);
fclose(fp);
delete a;
}
}
Last edited: