aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/__tests__/urlStateSpec.js
diff options
context:
space:
mode:
authorThomas Kriechbaumer <Kriechi@users.noreply.github.com>2017-04-30 11:19:55 +0200
committerGitHub <noreply@github.com>2017-04-30 11:19:55 +0200
commit8a4a46e7d3a0d05bcb4516af5f210b501fab73df (patch)
treea22a95ffbc44a1e1751a32e652f6e60f045f7d00 /web/src/js/__tests__/urlStateSpec.js
parent50cfededce248fac5948a46a00de0bda17c27758 (diff)
downloadmitmproxy-8a4a46e7d3a0d05bcb4516af5f210b501fab73df.tar.gz
mitmproxy-8a4a46e7d3a0d05bcb4516af5f210b501fab73df.tar.bz2
mitmproxy-8a4a46e7d3a0d05bcb4516af5f210b501fab73df.zip
update docker-release tags during release
Diffstat (limited to 'web/src/js/__tests__/urlStateSpec.js')
0 files changed, 0 insertions, 0 deletions
href='#n125'>125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
/*
 * util.c: Helper library functions for HVMLoader.
 *
 * Leendert van Doorn, leendert@watson.ibm.com
 * Copyright (c) 2005, International Business Machines Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 * Place - Suite 330, Boston, MA 02111-1307 USA.
 */

#include "../acpi/acpi2_0.h"  /* for ACPI_PHYSICAL_ADDRESS */
#include "util.h"
#include <stdint.h>

void outw(uint16_t addr, uint16_t val)
{
	__asm__ __volatile__ ("outw %%ax, %%dx" :: "d"(addr), "a"(val));
}

void outb(uint16_t addr, uint8_t val)
{
	__asm__ __volatile__ ("outb %%al, %%dx" :: "d"(addr), "a"(val));