Skip to content

Commit

Permalink
version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
btimofeev committed Apr 9, 2012
1 parent d258996 commit 5dcbddd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
1) Description
==============

emuChip is cross-platform CHIP-8 emulator written in C++, Qt and SDL libraries.
emuChip is cross-platform CHIP-8 and Super CHIP emulator written in C++, Qt and SDL libraries.

2) Supported platforms
==============

* Unix-like operating systems (Linux, FreeBSD, etc.)
* Linux
* Windows
* Mac OS X (Not tested)

3) Compilation
==============
Expand Down
1 change: 1 addition & 0 deletions src/chip_emu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ void ChipEmu::executeNextOpcode()
{
case 0x0: // 8XY0 - set VX = VY
V[((opcode & 0x0F00)>>8)] = V[((opcode & 0x00F0)>>4)];

break;

case 0x1: // 8XY1 - set VX = VX | VY
Expand Down
2 changes: 1 addition & 1 deletion src/qt/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ int main(int argc, char *argv[])
QApplication app(argc, argv);

app.setApplicationName("emuChip");
app.setApplicationVersion("0.2");
app.setApplicationVersion("0.3");

MainWindow mainWin;
mainWin.setWindowTitle(app.applicationName() + " v" + app.applicationVersion());
Expand Down
2 changes: 1 addition & 1 deletion src/qt/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ void MainWindow::set8x()

void MainWindow::about()
{
QMessageBox::about(this, tr("About"), "<center><h3>emuChip v"+QCoreApplication::applicationVersion()+"</h3></center>"+tr("<center><p>emuChip is cross-platform CHIP-8 emulator.</p><b>Homepage: </b> <a href=\"http://code.google.com/p/emuchip\">http://code.google.com/p/emuchip/</a>.<small><p>Copyright &copy; 2009-2012 Boris Timofeev (<a href=\"mailto:[email protected]\">[email protected]</a>).</p></small></center>"));
QMessageBox::about(this, tr("About"), "<center><h3>emuChip v"+QCoreApplication::applicationVersion()+"</h3></center>"+tr("<center><p>emuChip is cross-platform CHIP-8 and Super CHIP emulator.</p><b>Homepage: </b> <a href=\"http://code.google.com/p/emuchip\">http://code.google.com/p/emuchip/</a>.<small><p>Copyright &copy; 2009-2012 Boris Timofeev (<a href=\"mailto:[email protected]\">[email protected]</a>).</p></small></center>"));
}

void MainWindow::writeSettings()
Expand Down
2 changes: 1 addition & 1 deletion src/sdl/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void handle_input(SDL_Event &event)

int main(int argc, char *argv[])
{
cout << "emuChip-sdl v0.2" << endl << "Copyright (C) 2009-2012 Boris Timofeev <[email protected]>" << endl << endl;
cout << "emuChip-sdl v0.3" << endl << "Copyright (C) 2009-2012 Boris Timofeev <[email protected]>" << endl << endl;
if (argc == 1){
cerr << "Error: no input file specified" << endl;
cerr << "Usage: " << argv[0] << " FILE" << endl;
Expand Down

0 comments on commit 5dcbddd

Please sign in to comment.