Jump to content

I made a emulator using Batch. It is pretty tiny in size, the size is 1.2 KB and the size on disk is 4 KB. You first insert a ROM which actually is a batch file but instead of .bat or .cmd it's ".rom". It has some color. Then you run the program, and you need only 1 ROM on the folder, and no .bat file on the folder. 

 

Download Link (MediaFire): http://www.mediafire.com/download/fdb9xdwd9z03sy6/emu.rar

VirusTotal (100% Safe): https://www.virustotal.com/pt/file/f64651861fe113f5ef875f74ff37f7412551400c9c477929854dd20b4a5ea308/analysis/1456316930/

This is no virus, no BS. Also the download link is .rar beacuse i don't want to do stuff to your files, and only do stuff to inside the .rar file. Even though it creates, deletes, moves, copies and renames files and folders, that's for a function that makes your .ROM file like if it was new.

 

Please don't post negative things. I'm sick of people saying this is a stupid tool with a shitty norton stamp. This is a OK tool that's classified safe by 58 antiviruses, both shitty and unshitty. 

 

Ryzen 7 3700X / 16GB RAM / Optane SSD / GTX 1650 / Solus Linux

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/
Share on other sites

Link to post
Share on other sites

I would like to try it, but i cant trust you that its not a virus so i will just install it on a VM

Also, does the system it emulates actually exist, or did you just make it

Long live Stalin, he loves you; sing these words, or you know what he’ll do!

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304135
Share on other sites

Link to post
Share on other sites

1 minute ago, noisebomb44 said:

I would like to try it, but i cant trust you that its not a virus so i will just install it on a VM

It's not a virus even though for you to get the ROM back i have to copy and move files and make and delete folders while running. 

Ryzen 7 3700X / 16GB RAM / Optane SSD / GTX 1650 / Solus Linux

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304138
Share on other sites

Link to post
Share on other sites

Just now, NunoLava1998 said:

Well, batch files that have the .rom file extension.

but an emulator emulates hardware, it doesnt just run rom extension files.

 

based on this i call BS, and if you cant give me a decent answer i'll have to drag in a mod to remove this, and possibly you.

i dont go as lightly over sketchy programs as some others, because i know people who fall for shady stuff, and i know the kind of damage it does.

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304154
Share on other sites

Link to post
Share on other sites

3 hours ago, NunoLava1998 said:

Well, batch files that have the .rom file extension.

Avoiding the question makes you look far more suspicious.

|  The United Empire of Earth Wants You | The Stormborn (ongoing build; 90% done)  |  Skyrim Mods Recommendations  LTT Blue Forum Theme! | Learning Russian! Blog |
|"They got a war on drugs so the police can bother me.”Tupac Shakur  | "Half of writing history is hiding the truth"Captain Malcolm Reynolds | "Museums are racist."Michelle Obama | "Slap a word like "racist" or "nazi" on it and you'll have an army at your back."MSM Logic | "A new command I give you: love one another. As I have loved you, so you must love one another"Jesus Christ | "I love the Union and the Constitution, but I would rather leave the Union with the Constitution than remain in the Union without it."Jefferson Davis |

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304156
Share on other sites

Link to post
Share on other sites

1 hour ago, manikyath said:

but an emulator emulates hardware, it doesnt just run rom extension files.

 

based on this i call BS, and if you cant give me a decent answer i'll have to drag in a mod to remove this, and possibly you.

i dont go as lightly over sketchy programs as some others, because i know people who fall for shady stuff, and i know the kind of damage it does.

Sorry, it's not BS. 

 

1 hour ago, Albatross said:

Avoiding the question makes you look far more suspicious.

But i'm not, i'll edit the post.

Ryzen 7 3700X / 16GB RAM / Optane SSD / GTX 1650 / Solus Linux

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304158
Share on other sites

Link to post
Share on other sites

3 hours ago, NunoLava1998 said:

But i'm not, i'll edit the post.

That edit doesn't explain what it is.

|  The United Empire of Earth Wants You | The Stormborn (ongoing build; 90% done)  |  Skyrim Mods Recommendations  LTT Blue Forum Theme! | Learning Russian! Blog |
|"They got a war on drugs so the police can bother me.”Tupac Shakur  | "Half of writing history is hiding the truth"Captain Malcolm Reynolds | "Museums are racist."Michelle Obama | "Slap a word like "racist" or "nazi" on it and you'll have an army at your back."MSM Logic | "A new command I give you: love one another. As I have loved you, so you must love one another"Jesus Christ | "I love the Union and the Constitution, but I would rather leave the Union with the Constitution than remain in the Union without it."Jefferson Davis |

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304163
Share on other sites

Link to post
Share on other sites

@echo off
SETLOCAL EnableDelayedExpansion
for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do (
  set "DEL=%%a"
)
cls
title Imagine Emulator
rem Code ---------------------------------------------------------------
call :ColorText 0c "Please type the name of the file you wish to load. It must be in the current directory and have ".rom". Also, one ROM file at each directory. No .bat files in the directory"
echo )
set /p rom="ROM (example: xxxx.rom): "
cls
call :ColorText 0c "Loading..."
if exist %rom% (
goto etc
) else (
cls
call :ColorText 0c "Error, no ROM in the current directory or ROM inexistent. Halting."
pause>nul
exit
)
:etc
mkdir tmp
move %rom% tmp
cd tmp
copy %rom% ..\.
cd ..
ren %rom% *.bat
start *.bat
cls
echo Launched. Press any key to exit and restore the files to normal, so only press a key when you're done running, otherwise it will mess up.
pause>nul 
del *.bat
cd tmp
move %rom% ..\.
cd ..
rmdir tmp
exit
rem This took forever to make.
rem Code ---------------------------------------------------------------
:ColorText
echo off
<nul set /p ".=%DEL%" > "%~2"
findstr /v /a:%1 /R "^$" "%~2" nul
del "%~2" > nul 2>&1
goto :eof

wat.jpg

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304167
Share on other sites

Link to post
Share on other sites

1 minute ago, manikyath said:

so, i looked at the code, this is literally a program that takes a file dot rom, changes it to a file dot bat, and executes it.

 

i am unsure of the purpose...

And after executing it and the user pressing enter it restores it to normal.

Ryzen 7 3700X / 16GB RAM / Optane SSD / GTX 1650 / Solus Linux

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304176
Share on other sites

Link to post
Share on other sites

Just now, NunoLava1998 said:

And after executing it and the user pressing enter it restores it to normal.

what is the purpose? cant i just use my batch files normally?

 

also, this isnt an emulator, it literally is just a shell that adds 4KB of unnecessary bloat, and performs no other function than being redundant.

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304182
Share on other sites

Link to post
Share on other sites

2 minutes ago, NunoLava1998 said:

It's something that runs .rom files, if it has batch code in it. Otherwise the command line gets confused. 

yes, but it does something in 10 seconds that we people can do in 3 seconds, weird ass code too man

Please, follow your own posts and mention me in comments, otherwise i won't be able to help you.

Daily OS: OpenBSD -current

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304187
Share on other sites

Link to post
Share on other sites

1 minute ago, NunoLava1998 said:

It's something that runs .rom files, if it has batch code in it. Otherwise the command line gets confused. 

Changing file extension from .bat to .rom doesn't magically make it a ROM file for an emulator to take. Everyone is confused.

 

 

It's okay guys. OP is trying to be a meme.

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304189
Share on other sites

Link to post
Share on other sites

1 minute ago, EpicKneusje said:

yes, but it does something in 10 seconds that we people can do in 3 seconds, weird ass code too man

"10 seconds" write name

done

 

takes like 2 seconds not 3

Ryzen 7 3700X / 16GB RAM / Optane SSD / GTX 1650 / Solus Linux

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304194
Share on other sites

Link to post
Share on other sites

I call shenanigans! No valid description...evasive answers from OP. This is not the place to distribute your spam / malware / unknown piece of software that you feel a need to assure everyone is "Not a virus". Therefore... SHENANIGANS!

浪速の建てるは静か用に建てました!- Build Log Coming Soon!

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304198
Share on other sites

Link to post
Share on other sites

1 hour ago, rEaGeNeReary said:

Changing file extension from .bat to .rom doesn't magically make it a ROM file for an emulator to take. Everyone is confused.

 

 

It's okay guys. OP is trying to be a meme.

No, i'm not

 

1 hour ago, Papakuma said:

I call shenanigans! No valid description...evasive answers from OP. This is not the place to distribute your spam / malware / unknown piece of software that you feel a need to assure everyone is "Not a virus". Therefore... SHENANIGANS!

It's unknown yes, but it's not spam or malware. GOD pika JUST TRY IT 

Ryzen 7 3700X / 16GB RAM / Optane SSD / GTX 1650 / Solus Linux

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304200
Share on other sites

Link to post
Share on other sites

'Don't ever, ever try to lie to the internet - because they will catch you. They will de-construct your spin. They will remember everything you ever say for eternity.'

 

~ Gabe Newell

My Build: Phoenix

Processor: Intel i7 4770k, Motherboard: Asus Z97-P RAM: Corsair Dominator Platinum 16GB GPU: MSI GTX 1050TI OC Case: Corsair ICUE 4000X, Storage: Samsung 840 EVO 120GB + 500GB + 2TB HDD PSU: Corsair RM750, Cooling: Corsair H100i Capellix, 

                                                                                           If you want to talk to me or give me an answer, please tag me otherwise you'll be talking to thin air ❤️

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304206
Share on other sites

Link to post
Share on other sites

I would call it "a tool" rather "an emulator".

Like @manikyath wrote: an emulator emulates stuff (in most cases hardware).

 

This script is just a tool, used to rename a "rom" - file to a batch - file.

you can easily do it by just go to your command line, type:

 

"ren FILE.rom FILE.bat"

 

and archive the same. And when you finished, just type

 

"ren FILE.bat FILE.rom"

 

and "restore" the rom file.

 

:ph34r:

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304210
Share on other sites

Link to post
Share on other sites

Just now, NunoLava1998 said:

It's unknown yes, but it's not spam or malware. GOD pika JUST TRY IT 

I'm sorry, I don't "Just Try" unknown software from random people who post on a forum to promise me it's not a virus or malware....who refuse to directly answer questions about their program....you see, this does not build confidence or trust within a potential user...next think you know you will want me to just put in my credit card number and cvv code....or social security number...or my mother's maiden name....which is for the record.... SHENANIGANS! 

浪速の建てるは静か用に建てました!- Build Log Coming Soon!

Link to comment
https://linustechtips.com/topic/554055-made-a-emulator/#findComment-7304216
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×