summaryrefslogtreecommitdiff
path: root/system/shard-x86-at/7/src/HARDWARE.ASM
diff options
context:
space:
mode:
Diffstat (limited to 'system/shard-x86-at/7/src/HARDWARE.ASM')
-rw-r--r--system/shard-x86-at/7/src/HARDWARE.ASM17
1 files changed, 17 insertions, 0 deletions
diff --git a/system/shard-x86-at/7/src/HARDWARE.ASM b/system/shard-x86-at/7/src/HARDWARE.ASM
new file mode 100644
index 0000000..df89fdf
--- /dev/null
+++ b/system/shard-x86-at/7/src/HARDWARE.ASM
@@ -0,0 +1,17 @@
+;****************************************************************************
+;*======= Copyright (C) 1985,86 Martin Schoenbeck, Spenge ==================*
+;* *
+;* Lesen des Hardware Kennzeichen-Bytes *
+;* *
+;****************************************************************************
+
+hardware:
+ push es
+ mov ax,0ffffh
+ mov es,ax
+ mov al,byte ptr es:14 ;hardware byte holen
+ pop es
+ ret
+
+
+ \ No newline at end of file