diff --git a/boot/freedos.img b/boot/freedos.img index 4e3d0605..3e545ee6 100644 Binary files a/boot/freedos.img and b/boot/freedos.img differ diff --git a/boot/freedos_hd.img b/boot/freedos_hd.img index fcc3079b..9a0c238a 100644 Binary files a/boot/freedos_hd.img and b/boot/freedos_hd.img differ diff --git a/boot/freedos_web_hd.img b/boot/freedos_web_hd.img index 38a7ebac..d85b4b99 100644 Binary files a/boot/freedos_web_hd.img and b/boot/freedos_web_hd.img differ diff --git a/tools/shutdown/shutdown.asm b/tools/shutdown/shutdown.asm deleted file mode 100644 index 37d2b2c9..00000000 --- a/tools/shutdown/shutdown.asm +++ /dev/null @@ -1,40 +0,0 @@ -; Copyright (c) 2019-2023 Andreas T Jonsson -; -; This software is provided 'as-is', without any express or implied -; warranty. In no event will the authors be held liable for any damages -; arising from the use of this software. -; -; Permission is granted to anyone to use this software for any purpose, -; including commercial applications, and to alter it and redistribute it -; freely, subject to the following restrictions: -; -; 1. The origin of this software must not be misrepresented; you must not -; claim that you wrote the original software. If you use this software in -; a product, an acknowledgment (see the following) in the product -; documentation is required. -; -; Portions Copyright (c) 2019-2023 Andreas T Jonsson -; -; 2. Altered source versions must be plainly marked as such, and must not be -; misrepresented as being the original software. -; -; 3. This notice may not be removed or altered from any source distribution. - -cpu 8086 -org 256 - - lea dx, message - mov ax, 900h - int 21h - - xor al, al ; Reset command - out 0xB4, al - mov al, 1 ; Shutdown command - out 0xB4, al - -stop: - hlt - jmp stop - -message: - db 'Emulator shutdown...', '$' \ No newline at end of file