From 325390541381caedc0c1c8a9a6402ce53962f2bd Mon Sep 17 00:00:00 2001 From: Erick Date: Sat, 5 Feb 2022 22:00:53 +0100 Subject: [PATCH] update docstring --- src/includes.h | 6 +++--- src/registers.h | 6 +++--- src/tyvm.c | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/includes.h b/src/includes.h index 887bd84..d9057e2 100644 --- a/src/includes.h +++ b/src/includes.h @@ -1,7 +1,7 @@ /* - TVM is a virtual machine for LC-3 based operating systems and it is used for educational purposes. - Copyright (c) under MIT license - Written by Erick Ahmed, 2022 + TYVM is a virtual machine for LC-3 based operating systems and it is used for educational purposes. + Copyright (c) 2022 Erick Ahmed + Open-source software distributed under MIT license */ /* List of all the libraries needed to run tyvm.c */ diff --git a/src/registers.h b/src/registers.h index 6138c61..2fc1135 100644 --- a/src/registers.h +++ b/src/registers.h @@ -1,7 +1,7 @@ /* - TVM is a virtual machine for LC-3 based operating systems and it is used for educational purposes. - Copyright (c) under MIT license - Written by Erick Ahmed, 2022 + TYVM is a virtual machine for LC-3 based operating systems and it is used for educational purposes. + Copyright (c) 2022 Erick Ahmed + Open-source software distributed under MIT license */ /* memory mapped register tables */ diff --git a/src/tyvm.c b/src/tyvm.c index ce39691..a951ac7 100644 --- a/src/tyvm.c +++ b/src/tyvm.c @@ -1,7 +1,7 @@ /* TYVM is a virtual machine for LC-3 based operating systems and it is used for educational purposes. - Copyright (c) under MIT license - Written by Erick Ahmed, 2022 + Copyright (c) 2022 Erick Ahmed + Open-source software distributed under MIT license */ #include "includes.h"