This commit is contained in:
julianb0 2019-05-30 12:44:56 +02:00
parent 1331ccdff5
commit 0641094a96
No known key found for this signature in database
GPG Key ID: DDF8325C95299A62
21 changed files with 86 additions and 87 deletions

View File

@ -1,4 +1,4 @@
; The OS/K Team licences this file to you under the MIT license.
; The OS/K Team licenses this file to you under the MIT license.
; See the LICENSE file in the project root for more information.
;

View File

@ -1,4 +1,4 @@
; The OS/K Team licences this file to you under the MIT license.
; The OS/K Team licenses this file to you under the MIT license.
; See the LICENSE file in the project root for more information.
;

View File

@ -1,4 +1,4 @@
; The OS/K Team licences this file to you under the MIT license.
; The OS/K Team licenses this file to you under the MIT license.
; See the LICENSE file in the project root for more information.
;

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
The OS/K Team licenses this file to you under the MIT license.
See the LICENSE file in the project root for more information.
-->
<!DOCTYPE language SYSTEM "language.dtd">
<language _name="Assembler (K-Arch)" version="1.0" _section="Sources" globs="*.k" mimetypes="text/x-asm;text/x-assembler">

View File

@ -1,4 +1,4 @@
# The OS/K Team licences this file to you under the MIT license.
# The OS/K Team licenses this file to you under the MIT license.
# See the LICENSE file in the project root for more information.
stop

View File

@ -1,6 +1,6 @@
#!/usr/bin/python3
# The OS/K Team licences this file to you under the MIT license.
# The OS/K Team licenses this file to you under the MIT license.
# See the LICENSE file in the project root for more information.
fi = open("INSTRS")

View File

@ -1,4 +1,4 @@
// The OS/K Team licences this file to you under the MIT license.
// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "instrs.h"

View File

@ -1,4 +1,4 @@
// The OS/K Team licences this file to you under the MIT license.
// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "instrs.h"

View File

@ -1,4 +1,4 @@
// The OS/K Team licences this file to you under the MIT license.
// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "../arch.h"
@ -65,6 +65,3 @@ void i_##name(ctx_t *ctx, acc_t *p1, acc_t *p2) \
#define JUMP(v) \
ctx->r[RIP].val = v + ctx->r[CR1].val

View File

@ -1,4 +1,4 @@
// The OS/K Team licences this file to you under the MIT license.
// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "instrs.h"

View File

@ -1,4 +1,4 @@
// The OS/K Team licences this file to you under the MIT license.
// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "instrs.h"

View File

@ -1,4 +1,4 @@
// The OS/K Team licences this file to you under the MIT license.
// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "instrs.h"
@ -76,4 +76,3 @@ IMPL_START_0(popf)
}
IMPL_END;

View File

@ -1,4 +1,4 @@
// The OS/K Team licences this file to you under the MIT license.
// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "instrs.h"

View File

@ -1,4 +1,4 @@
// The OS/K Team licences this file to you under the MIT license.
// The OS/K Team licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "arch.h"

View File

@ -92,4 +92,3 @@ struct reg_t
ulong flags;
};