From 86a6893e6a17d7bf24330c74b80f955c845b372f Mon Sep 17 00:00:00 2001 From: Erick <74315338+erickahmed@users.noreply.github.com> Date: Sat, 5 Feb 2022 02:18:45 +0100 Subject: [PATCH 1/5] Update .gitattributes --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitattributes b/.gitattributes index dfe0770..ec60752 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,5 @@ # Auto detect text files and perform LF normalization * text=auto + +#detect asm +*.asm diff=assembly From 271ea9584d810d6e6b989b5e89991aecb57949f8 Mon Sep 17 00:00:00 2001 From: Erick <74315338+erickahmed@users.noreply.github.com> Date: Sat, 5 Feb 2022 02:20:02 +0100 Subject: [PATCH 2/5] Update LICENSE From fd0614941070033fcae561c08b0ffaa811e76b38 Mon Sep 17 00:00:00 2001 From: Erick <74315338+erickahmed@users.noreply.github.com> Date: Sat, 5 Feb 2022 02:20:27 +0100 Subject: [PATCH 3/5] Update LICENSE From d8063b5c8e39c44f8d370440c653327ba989d746 Mon Sep 17 00:00:00 2001 From: Erick <74315338+erickahmed@users.noreply.github.com> Date: Sat, 5 Feb 2022 02:21:20 +0100 Subject: [PATCH 4/5] Update LICENSE From 5bf4742be2f088096c25eb0ae0698da43ef9d53b Mon Sep 17 00:00:00 2001 From: Erick <74315338+erickahmed@users.noreply.github.com> Date: Sat, 5 Feb 2022 02:41:59 +0100 Subject: [PATCH 5/5] temp fix for handle_interrupt() bug --- tyvm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tyvm.c b/tyvm.c index 1848735..ff13625 100644 --- a/tyvm.c +++ b/tyvm.c @@ -215,13 +215,13 @@ void mem_read(uint16_t address) { } #endif -#ifdef __UNIX +//#ifdef __UNIX void handle_interrupt(int signal) { restore_input_buffering(); printf("\n"); exit(-2); } -#endif +//#endif int main(int argc, const char* argv[]) {