diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-24 11:30:07 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-24 11:30:07 -0400 |
commit | a6a8129c151dc0e3a070c74161e117ec1365c099 (patch) | |
tree | 079531134ee3f685d861f4c55e8e15f70fe09905 /kernel/cpu/tss.S | |
parent | update paging code (diff) | |
download | comus-a6a8129c151dc0e3a070c74161e117ec1365c099.tar.gz comus-a6a8129c151dc0e3a070c74161e117ec1365c099.tar.bz2 comus-a6a8129c151dc0e3a070c74161e117ec1365c099.zip |
add tss
Diffstat (limited to 'kernel/cpu/tss.S')
-rw-r--r-- | kernel/cpu/tss.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/cpu/tss.S b/kernel/cpu/tss.S new file mode 100644 index 0000000..27f2955 --- /dev/null +++ b/kernel/cpu/tss.S @@ -0,0 +1,6 @@ + .globl tss_flush + +tss_flush: + movw $0x28, %ax + ltr %ax + ret |