ASMGetFS.asm revision c962a6909bf0f10f4a204fb345183864b6db014e
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync;; @file
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; innotek Portable Runtime - ASMGetFS().
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync;
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync;
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; Copyright (C) 2006-2007 innotek GmbH
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync;
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; This file is part of VirtualBox Open Source Edition (OSE), as
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; available from http://www.virtualbox.org. This file is free software;
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; you can redistribute it and/or modify it under the terms of the GNU
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; General Public License as published by the Free Software Foundation,
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; distribution. VirtualBox OSE is distributed in the hope that it will
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; be useful, but WITHOUT ANY WARRANTY of any kind.
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync;*******************************************************************************
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync;* Header Files *
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync;*******************************************************************************
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync%include "iprt/asmdefs.mac"
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsyncBEGINCODE
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync;;
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; Get the fs register.
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync; @returns fs.
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync;
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsyncBEGINPROC_EXPORTED ASMGetFS
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync mov eax, fs
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync ret
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsyncENDPROC ASMGetFS
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync
14ea49401f3c8c61422aefbda43809e275f60c6cvboxsync