English Correction

This commit is contained in:
Adrien Bourmault 2019-05-15 20:06:45 +02:00
parent 85150a69c2
commit 8305fb128d
No known key found for this signature in database
GPG Key ID: DD47504987D02E1B
7 changed files with 12 additions and 33 deletions

4
INSTRS
View File

@ -1,5 +1,5 @@
# The OS/K Team licences this file to you under the MIT license.
# See the LICENCE file in the project root for more information.
# The OS/K Team licenses this file to you under the MIT license.
# See the LICENSE file in the project root for more information.
ADD r ri
%0 = %0 + %1

21
LICENCE
View File

@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright © 2019 The OS/K Team
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
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -1,5 +1,5 @@
# The OS/K Team licences this file to you under the MIT license.
# See the LICENCE file in the project root for more information.
# The OS/K Team licenses this file to you under the MIT license.
# See the LICENSE file in the project root for more information.
src = arch.c instrs.c main.c regs.c
obj = $(patsubst %.c,%.o,$(src))

4
arch.c
View File

@ -1,5 +1,5 @@
// The OS/K Team licences this file to you under the MIT license.
// See the LICENCE file in the project root for more information.
// 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"

4
arch.h
View File

@ -1,5 +1,5 @@
// The OS/K Team licences this file to you under the MIT license.
// See the LICENCE file in the project root for more information.
// 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 <assert.h>
#include <stdio.h>

View File

@ -1,5 +1,5 @@
// The OS/K Team licences this file to you under the MIT license.
// See the LICENCE file in the project root for more information.
// 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"

4
regs.c
View File

@ -1,5 +1,5 @@
// The OS/K Team licences this file to you under the MIT license.
// See the LICENCE file in the project root for more information.
// 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"