Compare commits
No commits in common. "702d27f0b03bb05f86c5a301f360d4df4194d5ae" and "ea6898503364bade67f3d83558fa258dfa7a799b" have entirely different histories.
702d27f0b0
...
ea68985033
0
hrm/editor.php
Normal file → Executable file
0
hrm/functions.js
Normal file → Executable file
0
hrm/functions.php
Normal file → Executable file
0
hrm/help.htm
Normal file → Executable file
1
hrm/human-resource-machine-viewer/.gitignore
vendored
@ -1 +0,0 @@
|
||||
*.swp
|
0
hrm/human-resource-machine-viewer/GPLv3-LICENSE.md
Normal file → Executable file
0
hrm/human-resource-machine-viewer/README.md
Normal file → Executable file
0
hrm/human-resource-machine-viewer/TODO
Normal file → Executable file
0
hrm/human-resource-machine-viewer/hrm-comments.md
Normal file → Executable file
0
hrm/human-resource-machine-viewer/hrm.css
Normal file → Executable file
0
hrm/human-resource-machine-viewer/hrm.js
Normal file → Executable file
0
hrm/human-resource-machine-viewer/label-test.asm
Normal file → Executable file
0
hrm/human-resource-machine-viewer/pako_inflate.min.js
vendored
Normal file → Executable file
0
hrm/human-resource-machine-viewer/simple.asm
Normal file → Executable file
0
hrm/images/bg_tiles.png
Normal file → Executable file
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
0
hrm/images/hand.png
Normal file → Executable file
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
0
hrm/images/help.png
Normal file → Executable file
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
0
hrm/images/next.png
Normal file → Executable file
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
0
hrm/images/pause.png
Normal file → Executable file
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
0
hrm/images/play.png
Normal file → Executable file
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
0
hrm/images/previous.png
Normal file → Executable file
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
0
hrm/images/reset.png
Normal file → Executable file
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
0
hrm/images/screenshot.png
Normal file → Executable file
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
10
hrm/run.php
Normal file → Executable file
@ -2,10 +2,6 @@
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<?
|
||||
|
||||
// ini_set('display_errors', 1);
|
||||
// ini_set('display_startup_errors', 1);
|
||||
// error_reporting(E_ALL);
|
||||
|
||||
include("functions.php");
|
||||
include("../levels.php");
|
||||
|
||||
@ -121,8 +117,8 @@ else{
|
||||
// echo("program_valid: \"$program_valid\"<br>");
|
||||
|
||||
$debug = false;
|
||||
if($program[0]['cmd'] == 'comment'){
|
||||
if($program[0]['comment'] == '--debug'){
|
||||
if($program[0][cmd] == 'comment'){
|
||||
if($program[0][comment] == '--debug'){
|
||||
echo("<h1><font color=red>DEBUG Modus</font></h1>");
|
||||
$debug = true;
|
||||
}
|
||||
@ -271,7 +267,7 @@ else{
|
||||
|
||||
function page_loaded(){
|
||||
<?
|
||||
if(($program[0]['cmd'] == "comment") && ($program[0]['comment'] == "--debug")){ //we are in debug mode
|
||||
if(($program[0][cmd] == "comment") && ($program[0][comment] == "--debug")){ //we are in debug mode
|
||||
?>
|
||||
console.log("### We are in DEBUG Mode!!!");
|
||||
$("#init_box_content").html(init_box_content);
|
||||
|