VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TestSendStrCmd.asm@ 58675

Last change on this file since 58675 was 58675, checked in by vboxsync, 9 years ago

bs3kit: Converted a bit more stuff and decided to got with syscalls for screen output, at least for now.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1; $Id: bs3-cmn-TestSendStrCmd.asm 58675 2015-11-12 15:47:57Z vboxsync $
2;; @file
3; BS3Kit - bs3TestSendStrCmd.
4;
5
6;
7; Copyright (C) 2007-2015 Oracle Corporation
8;
9; This file is part of VirtualBox Open Source Edition (OSE), as
10; available from http://www.virtualbox.org. This file is free software;
11; you can redistribute it and/or modify it under the terms of the GNU
12; General Public License (GPL) as published by the Free Software
13; Foundation, in version 2 as it comes in the "COPYING" file of the
14; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16;
17; The contents of this file may alternatively be used under the terms
18; of the Common Development and Distribution License Version 1.0
19; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20; VirtualBox OSE distribution, in which case the provisions of the
21; CDDL are applicable instead of those of the GPL.
22;
23; You may elect to license modified versions of this file under the
24; terms and conditions of either the GPL or the CDDL or both.
25;
26
27%include "bs3kit-template-header.mac"
28%include "VBox/VMMDevTesting.mac"
29
30BS3_EXTERN_DATA16 g_fbBs3VMMDevTesting
31TMPL_BEGIN_TEXT
32
33;;
34; @cproto BS3_DECL(void) bs3TestSendStrCmd_c16(uint32_t uCmd, const char BS3_FAR *pszString);
35;
36BS3_PROC_BEGIN_CMN bs3TestSendStrCmd
37 BS3_CALL_CONV_PROLOG 2
38 push xBP
39 mov xBP, xSP
40 push xAX
41 push xDX
42 push xSI
43 BS3_ONLY_16BIT_STMT push ds
44
45 cmp byte [g_fbBs3VMMDevTesting], 0
46 je .no_vmmdev
47
48 ; The command (uCmd).
49 mov dx, VMMDEV_TESTING_IOPORT_CMD
50 mov eax, [xBP + xCB]
51 out dx, eax
52
53 ; The string.
54 mov dx, VMMDEV_TESTING_IOPORT_DATA
55%ifdef TMPL_16BIT
56 lds si, [xBP + xCB + sCB]
57%else
58 mov xSI, [xBP + xCB + sCB]
59%endif
60.next_char:
61 lodsb
62 out dx, al
63 test al, al
64 jnz .next_char
65
66.no_vmmdev:
67 BS3_ONLY_16BIT_STMT pop ds
68 pop xSI
69 pop xDX
70 pop xAX
71 leave
72 BS3_CALL_CONV_EPILOG 2
73 ret
74BS3_PROC_END_CMN bs3TestSendStrCmd
75
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette