This file contains 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
INFO: FILEIO: [c8testsuite4.1/1-chip8-logo.ch8] File loaded successfully | |
0/0: V0:00 V1:00 V2:00 V3:00 V4:00 V5:00 V6:00 V7:00 V8:00 V9:00 VA:00 VB:00 VC:00 VD:00 VE:00 VF:00 I:0000 SP:0 PC:0200 O:00e0 | |
1/1: V0:00 V1:00 V2:00 V3:00 V4:00 V5:00 V6:00 V7:00 V8:00 V9:00 VA:00 VB:00 VC:00 VD:00 VE:00 VF:00 I:0000 SP:0 PC:0202 O:6101 | |
2/2: V0:00 V1:01 V2:00 V3:00 V4:00 V5:00 V6:00 V7:00 V8:00 V9:00 VA:00 VB:00 VC:00 VD:00 VE:00 VF:00 I:0000 SP:0 PC:0204 O:6008 | |
3/3: V0:08 V1:01 V2:00 V3:00 V4:00 V5:00 V6:00 V7:00 V8:00 V9:00 VA:00 VB:00 VC:00 VD:00 VE:00 VF:00 I:0000 SP:0 PC:0206 O:a250 | |
4/4: V0:08 V1:01 V2:00 V3:00 V4:00 V5:00 V6:00 V7:00 V8:00 V9:00 VA:00 VB:00 VC:00 VD:00 VE:00 VF:00 I:0250 SP:0 PC:0208 O:d01f | |
................................................................ | |
............####................................................ | |
..............#................................................. | |
..............#................................................. |
This file contains 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
//--------------------------------------------------------------------------------------- | |
// src/c8db/database.hpp | |
//--------------------------------------------------------------------------------------- | |
// | |
// Copyright (c) 2023, Steffen Schümann <[email protected]> | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights | |
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This file contains 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
//----------------------------------------------------------------------------- | |
// Self playing Tic-Tac-Toe example with raylib :-) | |
//----------------------------------------------------------------------------- | |
// LICENSE: zlib/libpng | |
// | |
// Copyright (c) 2022 Steffen Schümann (@gulrak) | |
// | |
// This software is provided "as-is", without any express or implied | |
// warranty. In no event will the authors be held liable for any damages | |
// arising from the use of this software. |