0% encontró este documento útil (0 votos)
91 vistas52 páginas

More HTML

Cargado por

Cabina Arisa
Derechos de autor
© © All Rights Reserved
Nos tomamos en serio los derechos de los contenidos. Si sospechas que se trata de tu contenido, reclámalo aquí.
Formatos disponibles
Descarga como PDF, TXT o lee en línea desde Scribd
0% encontró este documento útil (0 votos)
91 vistas52 páginas

More HTML

Cargado por

Cabina Arisa
Derechos de autor
© © All Rights Reserved
Nos tomamos en serio los derechos de los contenidos. Si sospechas que se trata de tu contenido, reclámalo aquí.
Formatos disponibles
Descarga como PDF, TXT o lee en línea desde Scribd
Está en la página 1/ 52

Guía básica sobre

HTML y CSS para marketers

1
Índice
Introducción 3

Qué son los lenguajes de codificación 4

Qué es el HTML 5

Qué es el CSS 6

HTML vs. CSS 7

Códigos HTML que debes conocer 9

Cómo actualizar el CSS 12

HTML y CSS: Qué evitar 14

Recursos adicionales: cursos, lecciones y libros recomendados 15

2
Introducción

¿Alguna vez has hecho clic con el botón derecho en una página web y has seleccionado
«ver código fuente» o has echado un vistazo al código fuente de un correo electrónico?
O ¿usabas MySpace y aprendiste a actualizar el código para añadir imágenes o música
de fondo a tu perfil? Pues de eso se trata el HTML. El CSS es un lenguaje de codificación
complementario que aplica una hoja de estilos a una determinada página de código HTML
para adaptar el aspecto de dicha página a tu marca.

El HTML y el CSS están entre los lenguajes


que más utilizan los desarrolladores,
diseñadores y profesionales del marketing.
¿Sabías que para mejorar el SEO basta con incluir palabras
Pueden sonar a algo muy técnico que requiere
clave en las etiquetas de encabezado HTML de las
competencias específicas, pero en realidad
publicaciones de un blog?
hay muchas formas de usar estas herramientas
Conocer algunos códigos HTML básicos y aprender a
a un nivel básico en el marketing del día a
integrar el HTML con el CSS permite mejorar las estrategias
día. Podrías incluso haber usado ya el HTML
de marketing y resolver problemas que, de otra manera,
sin siquiera saberlo al crear un enlace,
podrían costar mucho tiempo y dinero de no contar con un
actualizar el encabezado de una página
desarrollador en la empresa.
o editar una página de tu sitio web o una
publicación de un blog. Para un profesional
En esta guía, veremos las aplicaciones más comunes
del marketing, estos lenguajes de codificación
del HTML y el CSS para los profesionales del marketing.
representan un ahorro en términos de tiempo
Examinaremos los conceptos básicos de cada lenguaje,
y mejores resultados en la personalización, la
las diferencias entre ellos y proporcionaremos recursos,
optimización y el SEO.
ejercicios y herramientas adicionales.

3
Qué son los lenguajes de codificación
Los lenguajes de codificación, como el HTML y el CSS, también conocidos como «lenguajes de programación», consisten en
instrucciones escritas que le dicen al software qué hacer, cómo mostrar algo o cómo procesar un determinado algoritmo.
Otros lenguajes comunes son Java, Python y SQL. El HTML y el CSS se denominan lenguajes de programación declarativos
(en inglés), ya que declaran lo que hay en una página web y qué aspecto debe tener dicho contenido.

Los códigos como el HTML o el CSS representan la forma


en la que el desarrollador se comunica con el software e
imparte instrucciones a la página para que se desplace de
una determinada forma, muestre los colores de la marca,
ponga una imagen en el centro o responda de alguna
manera a las acciones del usuario; por ejemplo, al hacer
clic en un enlace, se abrirá otra sección de la página (en
inglés).

El HTML se creó originalmente para diferenciar los


elementos estructurales de las páginas web, como
los párrafos, el texto del cuerpo y los encabezados
en un formato de archivo con extensión .html.
Pero como no presentaba funciones de diseño,
se desarrolló el CSS como archivo independiente
(archivo con extensión .css) para que se ocupara
de la forma y la apariencia de las páginas.

De esta forma, las dos herramientas trabajan de


la mano para generar páginas web con un diseño
impecable y elementos de personalización y SEO.

4
Qué es el HTML
HTML (HyperText Markup Language, por sus siglas en inglés) hace referencia al lenguaje de marcas de hipertexto que emplea
etiquetas para alterar la estructura o la forma en la que aparecen el texto o los elementos de una página web. Las etiquetas HTML
permiten organizar el contenido, facilitan la lectura de las páginas y comunican a los motores de búsqueda cuáles son las pala-
bras clave principales mediante etiquetas de encabezado. Este es un ejemplo de un fragmento de código HTML para hipertexto:

El resultado de este código será: haz clic aquí


El código irá comprendido entre los paréntesis angulares
<a href=”https://www.hubspot.es”>haz clic aquí</a> de apertura (<) y de cierre (</a>). Sin el paréntesis de
cierre, el código no podrá dar el resultado esperado.

El HTML suele usarse sobre todo en páginas web, en correos


electrónicos o en el sistema interno de las publicaciones de
los blogs. Muchos sistemas de gestión de contenidos (CMS)
ofrecen dos opciones distintas para editar el contenido. Una
de ellas es el editor WYSIWYG (siglas de What You See Is
What You Get; en español, lo que ves es lo que obtienes),
que permite modificar el color, el tamaño y el estilo de la
letra, seleccionándolos entre las opciones disponibles en un
menú desplegable. La otra, es un editor de HTML, al que se
conoce como «editor fuente». También se puede emplear un
editor HTML (en inglés) independiente.

Más adelante veremos los códigos HTML más comunes y


aprenderemos a formatearlos.

5
Qué es el CSS Imagen: W3 Schools

CSS (siglas de Cascading Style Sheets)


significa hojas de estilos en cascada. Se trata
de una herramienta que le dice al software
cómo debe presentarse el HTML en la página
web en términos de maquetación, esquema
<p style=”background-color:tomato”>Lorem ipsum </p>
de colores y formato. En concreto, representa
una serie de reglas que se aplican al HTML en
la página para determinar aspectos como los
colores de fondo, el tipo de letra, el espacio En el ejemplo, «p» es el selector que se encarga de determinar dónde
entre las líneas y la alineación, entre otros. aplicar el estilo. «P» significa párrafo, por lo que el color «Tomato» se
aplicará al párrafo.
El CSS se puede aplicar a la página usando
bien sea una hoja de estilos interna o una Este es otro ejemplo de cómo funcionan el HTML y el CSS juntos.
externa. En el caso de la hoja de estilos
interna, en un documento HTML, se le dirá
al software qué color de fondo, qué tipo <h1 style=”color:red”>Introducción a los lenguajes HTML y CSS</h1>
de letra y qué otros elementos de diseño
aplicar, ya sea a una sección específica o a la
página entera. Las hojas de estilos externas
se pueden enlazar a la página, si bien siguen
siendo páginas de códigos de diseño
Introducción a los lenguajes HTML y CSS
independientes.
Esta etiqueta de encabezado h1 (que indica que se trata del título
Veamos el siguiente ejemplo en el que se principal de la página) incluye una etiqueta de estilo CSS que
aplica una CSS interna a un texto (en un determina que el color sea rojo.
práctico editor de prueba en el que podrás
ejercitarte un poco).

6
HTML vs. CSS Este es un ejemplo de una publicación de un blog en HTML sin CSS.

El HTML representa básicamente el


esqueleto de una página web, puesto
que le proporciona un armazón
técnico sobre el cual estructurarse. El
CSS, en cambio, se encarga del estilo;
es lo que le muestra a quien visita la
página el diseño, los colores, los tipos
de letra y todos esos aspectos que
consolidan la identidad de la marca.
El HTML sin el CSS puede funcionar,
pero no es estéticamente agradable.

El HTML ofrece una manera para


formatear y actualizar la estructura
de una página web, añadiendo Fuente: HubSpot

enlaces e imágenes, creando listas y


tablas y modificando el texto. El CSS
actualiza los elementos de diseño,
cambiando el color del fondo y de la
letra, poniendo imágenes de fondo,
modificando bordes y márgenes y
determinando las formas en las que
responderá la página a las acciones
del usuario (por ejemplo, ocultando
elementos), etc. Esta es la misma publicación, pero esta vez tras
la aplicación de las hojas de estilos en cascada.
¿Lo ves? Es mucho más eficaz.

7
HTML vs. CSS: las diferencias principales

HTML CSS

1 Código para la estructura de la página web 1 Código para el estilo de las páginas web

2 Códigos para elementos y aspectos sobre 2 Códigos para páginas enteras o individuales
todo individuales
3 No puede existir por sí mismo
3 Puede existir sin el CSS
4 Requiere mayores conocimientos técnicos
4 Es fácil de aprender
5 Ofrece más alternativas de estilo que el HTML
5 Todos los navegadores lo pueden procesar;
6 Presenta mejor estilo y formato que el HTML
no tiene requisitos técnicos particulares
7 Numerosos recursos y elementos de ayuda gratuitos
6 Numerosos recursos y elementos de ayuda
disponibles
gratuitos disponibles
8 Su comportamiento no es uniforme en todos los navegadores
7 Funciones de seguridad insuficientes
9 Funciones de seguridad insuficientes
8 Capacidades dinámicas limitadas
10 Puede aplicarse a otros lenguajes XML

8
Códigos HTML Etiquetas HTML
comunes para los marketers
que debes conocer
Etiqueta HTML: <html> aquí se pone la página web </html>
Independientemente de dónde se escriba el código HTML Esta etiqueta indica que la página en cuestión es una página
o del editor que se utilice, existen etiquetas HTML comunes HTML. Se abre al principio del documento y se cierra al final.
que presentan siempre la misma forma.
Etiqueta de encabezado: <h1> aquí se pone el título </h1>
Esta sería la estructura básica de un documento HTML. <h2> aquí se pone el subtítulo </h2>

Las etiquetas de encabezado son muy importantes en


<!DOCTYPE html>
las publicaciones de los blogs, puesto que determinan
<html> su estructura y ayudan al lector a identificar las distintas
<body> secciones. También sirven para optimizar el posicionamiento
<h1>Este es el encabezado principal</h1> de las páginas en los motores de búsqueda (en inglés), ya
<p>Este es el primer párrafo</p> que los algoritmos que estos emplean dan gran importancia
</body> a las palabras clave presentes en los encabezados.
</html>
Las CSS sirven para dar formato a los encabezados,
determinando el estilo (tipo y tamaño de letra, uso de
Todas las etiquetas HTML empiezan con paréntesis negrita/cursiva, separación entre los elementos del texto) en
angulares de apertura, como <html>, y terminan con cada etiqueta (h1, h2, h3, etc.).
paréntesis angulares de cierre </html>. En el ejemplo
anterior, la primera etiqueta le indica al navegador que Etiqueta de enlace: <a href=”url”>Texto del enlace</a>
el documento en cuestión es un documento HTML. La Los enlaces aparecen con frecuencia en correos electrónicos,
etiqueta <body> indica el cuerpo del texto, <h1> es el publicaciones de blogs y otros archivos HTML.
encabezado 1 (es decir, el título principal de la página) y
<p> denota un párrafo.

9
Etiquetas HTML
comunes para los marketers

Etiqueta de lista: Etiqueta de párrafo: <p> aquí se pone el párrafo </p>


Esta etiqueta delimita una parte del texto dentro de un párrafo.
Lista con viñetas
Etiqueta de imagen:
<ul>
<li> primer punto de la lista</li>
<li> segundo punto de la lista</li> <img src=”image file link” width=”300” height=”200”
<li> tercer punto de lista</li> alt=”keyword description”>
</ul>
Esta etiqueta permite poner en el documento una imagen tomada
Lista numerada de un archivo, modificar su tamaño y añadir texto alternativo (texto
alt) para mejorar el SEO. Más adelante, con las CSS se podrán
<ol> añadir también distintos rellenos u otros atributos.
<ol> primer punto de la lista</ol>
<ol> segundo punto de la lista</ol> Etiquetas de formato de texto:
<ol> tercer punto de la lista</ol> Negrita <strong> aquí se pone el texto </strong>
</ol> Subrayado <u> aquí se pone el texto </u>
Cursiva <em> aquí se pone el texto </em>
Las listas ayudan a organizar la
información. Las CSS permiten Para formatear el tipo, el tamaño y el grosor de la letra, el espacio
cambiar los tipos de viñeta, los entre líneas u otros aspectos relacionados con el estilo del texto, se
números o la alineación de la lista. requieren las etiquetas de estilo CSS; de lo contrario, el estilo del
documento entero se aplicará al texto.

10
Etiquetas para compartir en redes sociales: Etiqueta de cuerpo: <body> aquí se pone la
página web </body>
LinkedIn: Esta etiqueta, como vimos ya en el ejemplo de la
http://www.linkedin.com/shareArticle?mini=true&url=URL página HTML completa de arriba, es el contenedor
de elementos como listas, párrafos, enlaces e
Facebook: imágenes en la página web.
http://www.facebook.com/sharer/sharer.php?u=URL
Etiqueta de salto de línea: </br>
Si pones la URL deseada en la sección «URL» del código, al Es un código de maquetación sumamente útil.
hacer clic en el enlace se establece automáticamente la cone- Produce un salto de línea en el texto y puede
xión con LinkedIn o Facebook y se abre una publicación en la usarse en los encabezados, párrafos o en cualquier
que aparece ya el contenido del enlace, por lo que los visitan- lugar de la página en la que el texto tenga que
tes de tu sitio web no tienen que molestarse en copiar y pegar pasar a la línea siguiente.
ellos mismos el enlace para compartir tu contenido en una
nueva publicación. De esta forma se animarán más fácilmente
a compartir tu contenido, lo que te puede ayudar a llegar a un <h1> El encabezado es muy largo y debe
público más amplio. Estas etiquetas se pueden usar en publi- </br> dividirse en dos líneas </h1>
caciones de blogs y correos electrónicos, acompañadas por
los símbolos de LinkedIn o de Facebook.
Etiqueta span: <span> elemento </span>
Etiqueta de título: <title> aquí se pone el título </title>
Esta etiqueta sirve para cuidar la maquetación
Esta etiqueta determina el título de la página que aparece en
de la página. Cualquier elemento puesto en una
la parte de arriba del navegador.
etiqueta span quedará protegido contra toda
alteración de la maquetación que se haga cerca
del mismo, bien sea este una imagen o un símbolo.

Para probar los códigos HTML y ejercitarte, usa la


herramienta «playground» de W3Schools y haz
clic en «Run» (ejecutar).

11
Cómo actualizar el CSS CSS en línea

Como decíamos, el CSS en línea tendrá la siguiente


A la hora de actualizar el CSS, para facilitar el trabajo apariencia:
del profesional del marketing, muchos desarrolladores
recomiendan usar una hoja de estilos para todo el
documento o para el sitio web entero. Por ejemplo, con <h1 style=”color:red”>Introducción a los
una hoja de estilos se puede determinar que todas las lenguajes HTML y CSS</h1>
etiquetas de encabezado 1 (h1) tengan el tipo de letra
sans serif de tamaño 32, de color azul y en negrita. Así,
al escribir el HTML, bastará con asociar la hoja de estilos Aquí, la parte que corresponde al CSS es el color,
al documento y usar una etiqueta h1, para ver aparecer definido por la etiqueta «style». Para actualizar el CSS
automáticamente el estilo establecido. en línea, podrás usar los códigos de estilo y actualizar
los elementos de diseño como el relleno, los tipos de
Otro método para actualizar el CSS es el del estilo en línea. letra, los colores de fondo y los márgenes, entre otros.
El procedimiento consiste en añadir una etiqueta de
«estilo» a la etiqueta h1 y definir en ella elementos En esta lista de códigos CSS encontrarás las distintas
como el tipo de letra, el grosor y el color. Se trata de un etiquetas de estilo en línea.
método que requiere más tiempo y supone mayor riesgo
de error e inconsistencias en el sitio web, pero que en
ocasiones puede ser útil en determinadas páginas o en
determinados elementos.

Sugerencia: El estilo en línea se impone sobre las


hojas de estilo, por lo que hay que tener cuidado al
realizar cambios, puesto que se corre el riesgo de
sustituir el estilo de la hoja maestra.

12
Hoja de estilos externa

Para actualizar el CSS con una hoja de estilos externa, Así se verá una hoja de estilo externa .css.
primero hay que crear un archivo .css independiente con
los estilos que se quieren aplicar a los distintos elementos o
grupos, y luego enlazarlo al archivo .html. body {
background-color: lightblue;
Aquí te explicamos cómo enlazar una hoja de estilos externa
}
a un archivo HTML.

h1 {
<head> color: navy;
<link rel=”stylesheet” type=”text/css”
margin-left: 20px;
href=”thisisyourcssfile.css”>
}
</head>

Este código, escrito en el encabezado del documento HTML, Al enlazar esta hoja de estilos al documento HTML, el
le dice al archivo HTML que asocie el archivo CSS a la página fondo aparecerá de color azul claro y todas las etiquetas
en cuestión. h1 de color azul oscuro con una distancia de 20 píxeles
del margen izquierdo.
Sugerencia: El encabezado del documento HTML no es igual
a las etiquetas h1, h2 y h3. Las etiquetas de encabezado Si hay varios códigos CSS, el programa considerará el
dentro del documento denotan el encabezado de las siguiente orden de prioridad:
secciones, mientras que las etiquetas <head></head>
definen el título principal de la página. Es aquí donde se 1 Estilo en línea
incluirán elementos como las etiquetas de seguimiento
de Google Analytics o de otros programas para obtener 2 Hojas de estilo externas enlazadas en el encabezado
información de la página web.
3 Estilo predeterminado del navegador

13
HTML y CSS: qué evitar
Cuando se habla de HTML y de CSS, hay algunas cosas que los desarrolladores desaconsejan categóricamente.
En vista de que las hojas de estilos CSS se pueden aplicar a varias páginas del sitio web, es importante prestar
atención para no hacer cambios radicales que supongan modificaciones en el sitio entero.

Estos son algunos consejos sobre lo que hay que evitar al editar HTML y CSS.

HTML CSS

1 Olvidar un paréntesis de cierre. Cada 1 Pese a que en ocasiones resulta útil trabajar con el
paréntesis de apertura, como por ejemplo estilo en línea y aplicar un estilo a un encabezado
el que abre el párrafo <p>, debe tener su o a un párrafo específico, suele ser más fácil
respectivo paréntesis de cierre, </p>. elaborar una hoja de estilos para la página
web entera con un estilo general para todas
2 Olvidar incluir las etiquetas de texto alternativo las etiquetas h1, h2, h3, los fondos, márgenes,
en las imágenes. Estas ayudan a potenciar el rellenos y demás elementos de diseño.
SEO y describen a los motores de búsqueda
qué hay en la imagen. 2 Al crear hojas de estilo CSS, es importante
clasificar las distintas secciones y asegurarse de
3 Usar saltos de línea para crear listas. Lo que todo esté bien documentado.
correcto es usar la etiqueta de listas que hemos
descrito antes. 3 Hay que evitar actualizar la hoja de estilos si no
se sabe con precisión cuántas páginas se verán
4 Olvidar el DOCTYPE. En ese caso, los afectadas. Lo más recomendable es averiguar con
navegadores no conseguirán reconocer el tipo los desarrolladores si dicha actualización puede
de documento ni leer correctamente el código. dar lugar a problemas de legibilidad del sitio web.
14
RECURSOS ADICIONALES

Cursos, lecciones y libros recomendados


Ahora que conoces las bases de los lenguajes HTML Stack Overflow es una comunidad online para
y CSS, te podría interesar aprender un poco más. No desarrolladores con preguntas y respuestas sumamente
es tan difícil como creías, ¿verdad? Estos son nuestros útiles. Si tienes dudas o encuentras dificultades, podrás
cursos, lecciones, tutoriales y comunidades favoritos para pedir ayuda o consejos a estos sabelotodos.
aprender a programar (todos en inglés).

Codeacademy ofrece cursos de programación para


todos los niveles. Ofrece tanto cursos gratuitos como
cursos de pago con suscripción que incluyen asistencia
adicional y consejos de sus expertos. <conclusion>

Estas herramientas ayudarán a tu equipo de


W3Schools.com tiene simuladores de codificación y
marketing a ganar independencia, aunque no hay
plataformas de ejercitación para probar el código con que olvidar que un gran poder conlleva una gran
plantillas de estructuras tanto para HTML como para CSS. responsabilidad. Muchos equipos de marketing
y desarrollo unen esfuerzos para crear una lista
freeCodeCamp es un recurso gratuito que pone a maestra con códigos HTML/CSS disponibles para los
disposición más de 5000 tutoriales de programación. profesionales del marketing y con indicaciones de
lo que se debe evitar. Intenta actualizar la estructura
HTML de un correo electrónico y diseñar un boletín
HTML Hacks for Marketers (Trucos de HTML para
informativo colosal, pon en tu próxima publicación
profesionales del marketing) es una guía de HubSpot con enlaces para compartir en redes sociales o potencia
códigos HTML y tutoriales. la biblioteca entera de tu blog para SEO añadiendo
palabras clave pertinentes en las etiquetas de
Learn to Code HTML and CSS (Aprende a codificar HTML encabezado, actualizando las imágenes con texto alt
y CSS) de Shay Howe es un libro con excelentes críticas e implementando un SEO de primera en la página. Y
en Amazon que ilustra todo lo que hay que saber para recuerda: todo lo que se abre, se tiene que se cerrar.
¡No olvides cerrar todos los paréntesis!
programar en HTML y CSS.
</conclusion>
15
16
GA-H110M-H

User's Manual
Rev. 1101

For more product details, please visit GIGABYTE's website.

To reduce the impacts on global warming, the packaging materials of this product
are recyclable and reusable. GIGABYTE works with you to protect the environment.
Copyright
© 2021 GIGA-BYTE TECHNOLOGY CO., LTD. All rights reserved.
The trademarks mentioned in this manual are legally registered to their respective owners.

Disclaimer
Information in this manual is protected by copyright laws and is the property of GIGABYTE.
Changes to the specifications and features in this manual may be made by GIGABYTE without
prior notice. No part of this manual may be reproduced, copied, translated, transmitted, or
published in any form or by any means without GIGABYTE's prior written permission.
„„ In order to assist in the use of this product, carefully read the User's Manual.
„„ For product-related information, check on our website at: https://www.gigabyte.com

Identifying Your Motherboard Revision


The revision number on your motherboard looks like this: "REV: X.X." For example, "REV: 1.0"
means the revision of the motherboard is 1.0. Check your motherboard revision before updating
motherboard BIOS, drivers, or when looking for technical information.

Example:
Table of Contents

GA-H110M-H Motherboard Layout...................................................................................4

Chapter 1 Hardware Installation......................................................................................5


1-1 Installation Precautions..................................................................................... 5
1-2 Product Specifications....................................................................................... 6
1-3 Installing the CPU............................................................................................. 9
1-4 Installing the Memory........................................................................................ 9
1-5 Installing an Expansion Card.......................................................................... 10
1-6 Back Panel Connectors................................................................................... 10
1-7 Internal Connectors......................................................................................... 12

Chapter 2 BIOS Setup...................................................................................................17


2-1 Startup Screen................................................................................................ 18
2-2 M.I.T................................................................................................................ 18
2-3 System Information......................................................................................... 24
2-4 BIOS Features................................................................................................ 25
2-5 Peripherals...................................................................................................... 28
2-6 Chipset............................................................................................................ 30
2-7 Power Management........................................................................................ 31
2-8 Save & Exit...................................................................................................... 33

Chapter 3 Drivers Installation.........................................................................................34

Regulatory Notices..................................................................................................... 35
Contact Us................................................................................................................. 36

-3-
GA-H110M-H Motherboard Layout

CPU_FAN
KB_MS

DDR4_1

DDR4_2
ATX
ATX_12V
VGA

LGA1151
HDMI

R_USB30

F_USB30
USB_LAN

SYS_FAN

AUDIO
Realtek®
GbE LAN
PCIEX16 GA-H110M-H
SATA3 10 32

PCIEX1_1
BAT
iTE®
Super I/O
Intel® H110
PCIEX1_2
M_BIOS
CODEC SPDIF_O
F_AUDIO TPM F_USB2 F_USB1 F_PANEL
CLR_CMOS

Box Contents
55 GA-H110M-H motherboard
55 Motherboard driver disc 55 Two SATA cables
55 User's Manual 55 I/O Shield

* The box contents above are for reference only and the actual items shall depend on the product package you obtain.
The box contents are subject to change without notice.

-4-
Chapter 1 Hardware Installation
1-1 Installation Precautions
The motherboard contains numerous delicate electronic circuits and components which can become
damaged as a result of electrostatic discharge (ESD). Prior to installation, carefully read the user's
manual and follow these procedures:
•• Prior to installation, make sure the chassis is suitable for the motherboard.
•• Prior to installation, do not remove or break motherboard S/N (Serial Number) sticker or
warranty sticker provided by your dealer. These stickers are required for warranty validation.
•• Always remove the AC power by unplugging the power cord from the power outlet before
installing or removing the motherboard or other hardware components.
•• When connecting hardware components to the internal connectors on the motherboard, make
sure they are connected tightly and securely.
•• When handling the motherboard, avoid touching any metal leads or connectors.
•• It is best to wear an electrostatic discharge (ESD) wrist strap when handling electronic
components such as a motherboard, CPU or memory. If you do not have an ESD wrist strap,
keep your hands dry and first touch a metal object to eliminate static electricity.
•• Prior to installing the motherboard, please have it on top of an antistatic pad or within an
electrostatic shielding container.
•• Before connecting or unplugging the power supply cable from the motherboard, make sure
the power supply has been turned off.
•• Before turning on the power, make sure the power supply voltage has been set according to
the local voltage standard.
•• Before using the product, please verify that all cables and power connectors of your hardware
components are connected.
•• To prevent damage to the motherboard, do not allow screws to come in contact with the
motherboard circuit or its components.
•• Make sure there are no leftover screws or metal components placed on the motherboard or
within the computer casing.
•• Do not place the computer system on an uneven surface.
•• Do not place the computer system in a high-temperature or wet environment.
•• Turning on the computer power during the installation process can lead to damage to system
components as well as physical harm to the user.
•• If you are uncertain about any installation steps or have a problem related to the use of the
product, please consult a certified computer technician.
•• If you use an adapter, extension power cable, or power strip, ensure to consult with its installation
and/or grounding instructions.

-5-
1-2 Product Specifications
CPU ŠŠ Support for Intel® Core™ i7 processors/Intel® Core™ i5 processors/
Intel® Core™ i3 processors/Intel® Pentium® processors/
Intel® Celeron® processors in the LGA1151 package
(Go to GIGABYTE's website for the latest CPU support list.)
ŠŠ L3 cache varies with CPU
Chipset ŠŠ Intel® H110 Express Chipset
Memory ŠŠ 2 x DDR4 DIMM sockets supporting up to 32 GB of system memory
* Due to a Windows 32-bit operating system limitation, when more than 4 GB of physical
memory is installed, the actual memory size displayed will be less than the size of
the physical memory installed.
ŠŠ Dual channel memory architecture
ŠŠ Support for DDR4 2133 MHz memory modules
ŠŠ Support for ECC UDIMM 1Rx8/2Rx8 memory modules (operate in non-ECC mode)
ŠŠ Support for non-ECC UDIMM 1Rx8/2Rx8/1Rx16 memory modules
(Go to GIGABYTE's website for the latest supported memory speeds and memory
modules.)
Onboard ŠŠ Integrated Graphics Processor-Intel® HD Graphics support:
Graphics - 1 x D-Sub port, supporting a maximum resolution of 1920x1200@60 Hz
- 1 x HDMI port, supporting a maximum resolution of 4096x2160@24 Hz
* Support for HDMI 1.4 version.
ŠŠ Maximum shared memory of 512 MB
Audio ŠŠ Realtek® Audio CODEC
ŠŠ High Definition Audio
ŠŠ 2/4/5.1/7.1-channel
* To configure 7.1-channel audio, you need to open the audio software and select Device
advanced settings > Playback Device to change the default setting first. Please visit
GIGABYTE's website for details on configuring the audio software.
ŠŠ Support for S/PDIF Out
LAN ŠŠ Realtek® GbE LAN chip (1 Gbit/100 Mbit)
Expansion Slots ŠŠ 1 x PCI Express x16 slot, running at x16
(The PCI Express x16 slot conforms to PCI Express 3.0 standard.)
ŠŠ 2 x PCI Express x1 slots
(All of the PCI Express x1 slots conform to PCI Express 2.0 standard.)
Storage Interface ŠŠ Chipset:
- 4 x SATA 6Gb/s connectors
USB ŠŠ Chipset:
- 4 x USB 3.0/2.0 ports (2 ports on the back panel, 2 ports available through
the internal USB header)
- 6 x USB 2.0/1.1 ports (2 ports on the back panel, 4 ports available through
the internal USB headers)

-6-
Internal ŠŠ 1 x 24-pin ATX main power connector
Connectors ŠŠ 1 x 4-pin ATX 12V power connector
ŠŠ 4 x SATA 6Gb/s connectors
ŠŠ 1 x CPU fan header
ŠŠ 1 x system fan header
ŠŠ 1 x front panel header
ŠŠ 1 x front panel audio header
ŠŠ 1 x S/PDIF Out header
ŠŠ 1 x USB 3.0/2.0 header
ŠŠ 2 x USB 2.0/1.1 headers
ŠŠ 1 x Trusted Platform Module (TPM) header
ŠŠ 1 x Clear CMOS jumper
Back Panel ŠŠ 1 x PS/2 mouse port
Connectors ŠŠ 1 x PS/2 Keyboard port
ŠŠ 1 x D-Sub port
ŠŠ 1 x HDMI port
ŠŠ 2 x USB 3.0/2.0 ports
ŠŠ 2 x USB 2.0/1.1 ports
ŠŠ 1 x RJ-45 port
ŠŠ 3 x audio jacks (Line In, Line Out, Mic In)
I/O Controller ŠŠ iTE® I/O Controller Chip
Hardware ŠŠ System voltage detection
Monitor ŠŠ CPU/System temperature detection
ŠŠ CPU/System fan speed detection
ŠŠ CPU/System overheating warning
ŠŠ CPU/System fan fail warning
ŠŠ CPU/System fan speed control
* Whether the fan speed control function is supported will depend on the cooler you
install.
BIOS ŠŠ 1 x 64 Mbit flash
ŠŠ Use of licensed AMI UEFI BIOS
ŠŠ PnP 1.0a, DMI 2.7, WfM 2.0, SM BIOS 2.7, ACPI 5.0

-7-
Unique Features ŠŠ Support for APP Center
* Available applications in APP Center may vary by motherboard model. Supported
functions of each application may also vary depending on motherboard specifications.
- 3D OSD
- @BIOS
- AutoGreen
- Cloud Station
- EasyTune
- Fast Boot
- ON/OFF Charge
- Smart TimeLock
- Smart Keyboard
- Smart Backup
- System Information Viewer
- USB Blocker
ŠŠ Support for Q-Flash
ŠŠ Support for Smart Switch
ŠŠ Support for Xpress Install
Bundled ŠŠ Norton® Internet Security (OEM version)
Software ŠŠ cFosSpeed
Operating ŠŠ Support for Windows 10/8.1 64-bit
System ŠŠ Support for Windows 7 32-bit/64-bit
* Please download the "Windows USB Installation Tool" from GIGABYTE's website
and install it before installing Windows 7.

Form Factor ŠŠ Micro ATX Form Factor; 22.6cm x 17.4cm

* GIGABYTE reserves the right to make any changes to the product specifications and product-related information without
prior notice.

Please visit GIGABYTE's website for support lists of CPU, memory modules, and SSDs.

Please visit the Support\Utility List page on GIGABYTE's website to download the latest
version of apps.

-8-
1-3 Installing the CPU
Read the following guidelines before you begin to install the CPU:
•• Make sure that the motherboard supports the CPU.
(Go to GIGABYTE's website for the latest CPU support list.)
•• Always turn off the computer and unplug the power cord from the power outlet before installing the
CPU to prevent hardware damage.
•• Locate the pin one of the CPU. The CPU cannot be inserted if oriented incorrectly. (Or you may
locate the notches on both sides of the CPU and alignment keys on the CPU socket.)
•• Apply an even and thin layer of thermal grease on the surface of the CPU.
•• Do not turn on the computer if the CPU cooler is not installed, otherwise overheating and damage
of the CPU may occur.
•• Set the CPU host frequency in accordance with the CPU specifications. It is not recommended
that the system bus frequency be set beyond hardware specifications since it does not meet the
standard requirements for the peripherals. If you wish to set the frequency beyond the standard
specifications, please do so according to your hardware specifications including the CPU, graphics
card, memory, hard drive, etc.

Installing the CPU


Locate the alignment keys on the motherboard CPU socket and the notches on the CPU.
LGA1151 CPU Socket LGA1151 CPU
Alignment Key Alignment Key Notch Notch

Pin One Corner of the CPU Socket Triangle Pin One Marking on the CPU

Do not remove the CPU socket cover before inserting the CPU. It may pop off from the load
plate automatically during the process of re-engaging the lever after you insert the CPU.

1-4 Installing the Memory


Read the following guidelines before you begin to install the memory:
•• Make sure that the motherboard supports the memory. It is recommended that memory of the same
capacity, brand, speed, and chips be used.
(Go to GIGABYTE's website for the latest supported memory speeds and memory modules.)
•• Always turn off the computer and unplug the power cord from the power outlet before installing the
memory to prevent hardware damage.
•• Memory modules have a foolproof design. A memory module can be installed in only one direction.
If you are unable to insert the memory, switch the direction.
Dual Channel Memory Configuration
This motherboard provides two memory sockets and supports Dual Channel Technology. After the memory
is installed, the BIOS will automatically detect the specifications and capacity of the memory. Enabling Dual
Channel memory mode will double the original memory bandwidth.

Please visit GIGABYTE's website for details on hardware installation.

-9-
The two DDR4 memory sockets are divided into two channels and each channel has one memory socket as
following:

Channel A: DDR4_1

Channel B: DDR4_2
Due to CPU limitations, read the following guidelines before installing the memory in Dual Channel mode.
1. Dual Channel mode cannot be enabled if only one memory module is installed.
2. When enabling Dual Channel mode with two memory modules, it is recommended that memory of
the same capacity, brand, speed, and chips be used for optimum performance.

1-5 Installing an Expansion Card


Read the following guidelines before you begin to install an expansion card:
•• Make sure the motherboard supports the expansion card. Carefully read the manual that came
with your expansion card.
•• Always turn off the computer and unplug the power cord from the power outlet before installing an
expansion card to prevent hardware damage.

1-6 Back Panel Connectors

PS/2 Keyboard and PS/2 Mouse Port


Use the upper port (green) to connect a PS/2 mouse and the lower port (purple) to connect a PS/2 keyboard.
D-Sub Port
The D-Sub port supports a 15-pin D-Sub connector and supports a maximum resolution of
1920x1200@60 Hz (the actual resolutions supported depend on the monitor being used). Connect a
monitor that supports D-Sub connection to this port.
HDMI Port
The HDMI port is HDCP compliant and supports Dolby True HD and DTS HD
Master Audio formats. It also supports up to 192KHz/16bit 8-channel LPCM
audio output. You can use this port to connect your HDMI-supported monitor. The maximum supported
resolution is 4096x2160@24 Hz, but the actual resolutions supported are dependent on the monitor
being used.
After installing the HDMI device, make sure to set the default sound playback device to HDMI.
(The item name may differ depending on your operating system.)

USB 3.0/2.0 Port


The USB 3.0 port supports the USB 3.0 specification and is compatible to the USB 2.0/1.1 specification.
Use this port for USB devices.

•• When removing the cable connected to a back panel connector, first remove the cable from your
device and then remove it from the motherboard.
•• When removing the cable, pull it straight out from the connector. Do not rock it side to side to prevent
an electrical short inside the cable connector.

- 10 -
RJ-45 LAN Port
The Gigabit Ethernet LAN port provides Internet connection at up to 1 Gbps data rate. The following
describes the states of the LAN port LEDs.
Connection/ Connection/Speed LED:
Speed LED Activity LED Activity LED:
State Description State Description
Orange 1 Gbps data rate Blinking Data transmission or receiving is occurring
Green 100 Mbps data rate Off No data transmission or receiving is occurring
Off 10 Mbps data rate
LAN Port

USB 2.0/1.1 Port


The USB port supports the USB 2.0/1.1 specification. Use this port for USB devices.
Line In/Rear Speaker Out (Blue)
The line in jack. Use this audio jack for line in devices such as an optical drive, walkman, etc.
Line Out/Front Speaker Out (Green)
The line out jack.
Mic In/Center/Subwoofer Speaker Out (Pink)
The Mic in jack.

Audio Jack Configurations:


Headphone/
Jack 4-channel 5.1-channel 7.1-channel
2-channel
Line In/Rear Speaker Out a a a
Line Out/Front Speaker Out a a a a
Mic In/Center/Subwoofer
a a
Speaker Out
Front Panel Line Out/Side
a
Speaker Out

•• You can change the functionality of an audio jack using the audio software.
•• To configure 7.1-channel audio, you need to open the audio software and select Device
advanced settings > Playback Device to change the default setting first.

Please visit GIGABYTE's website for details on configuring the audio software.

- 11 -
1-7 Internal Connectors

1 3

10

7 8 12 11 13 9 6

1) ATX_12V 8) SPDIF_O
2) ATX 9) CLR_CMOS
3) CPU_FAN 10) F_USB30
4) SYS_FAN 11) F_USB1/F_USB2
5) SATA3 0/1/2/3 12) TPM
6) F_PANEL 13) BAT
7) F_AUDIO

Read the following guidelines before connecting external devices:


•• First make sure your devices are compliant with the connectors you wish to connect.
•• Before installing the devices, be sure to turn off the devices and your computer. Unplug the power
cord from the power outlet to prevent damage to the devices.
•• After installing the device and before turning on the computer, make sure the device cable has
been securely attached to the connector on the motherboard.
- 12 -
1/2) ATX_12V/ATX (2x2 12V Power Connector and 2x12 Main Power Connector)
With the use of the power connector, the power supply can supply enough stable power to all the components
on the motherboard. Before connecting the power connector, first make sure the power supply is turned
off and all devices are properly installed. The power connector possesses a foolproof design. Connect the
power supply cable to the power connector in the correct orientation.
The 12V power connector mainly supplies power to the CPU. If the 12V power connector is not connected,
the computer will not start.
To meet expansion requirements, it is recommended that a power supply that can withstand high
power consumption be used (500W or greater). If a power supply is used that does not provide the
required power, the result can lead to an unstable or unbootable system.
ATX_12V:
Pin No. Definition
3 4 1 GND
1 2 2 GND
ATX_12V 3 +12V
4 +12V

ATX:
12 24 Pin No. Definition Pin No. Definition
1 3.3V 13 3.3V
2 3.3V 14 -12V
3 GND 15 GND
4 +5V 16 PS_ON (soft On/Off)
5 GND 17 GND
6 +5V 18 GND
7 GND 19 GND
8 Power Good 20 NC
9 5VSB (stand by +5V) 21 +5V
10 +12V 22 +5V
11 +12V (Only for 2x12-pin 23 +5V (Only for 2x12-pin ATX)
1 13 ATX)
12 3.3V (Only for 2x12-pin 24 GND (Only for 2x12-pin ATX)
ATX)
ATX

3/4) CPU_FAN/SYS_FAN (Fan Headers)


All fan headers on this motherboard are 4-pin. Most fan headers possess a foolproof insertion design.
When connecting a fan cable, be sure to connect it in the correct orientation (the black connector wire is
the ground wire). The speed control function requires the use of a fan with fan speed control design. For
optimum heat dissipation, it is recommended that a system fan be installed inside the chassis.
CPU_FAN: SYS_FAN:
Pin No. Definition Pin No. Definition
1 GND 1 GND
1
2 +12V 2 Speed Control
1
CPU_FAN
3 Sense SYS_FAN 3 Sense
4 Speed Control 4 VCC

•• Be sure to connect fan cables to the fan headers to prevent your CPU and system from
overheating. Overheating may result in damage to the CPU or the system may hang.
•• These fan headers are not configuration jumper blocks. Do not place a jumper cap on the headers.

- 13 -
5) SATA3 0/1/2/3 (SATA 6Gb/s Connectors)
The SATA connectors conform to SATA 6Gb/s standard and are compatible with SATA 3Gb/s and SATA
1.5Gb/s standard. Each SATA connector supports a single SATA device.
7 7
Pin No. Definition
1 GND
SATA3 2 TXP
3 2 3 TXN
1 0 4 GND
5 RXN
6 RXP
7 GND
1 1

To enable hot-plugging for the SATA ports, refer to Chapter 2, "BIOS Setup," "Peripherals\SATA
Configuration," for more information.

6) F_PANEL (Front Panel Header)


Connect the power switch, reset switch, speaker, chassis intrusion switch/sensor and system status indicator
on the chassis to this header according to the pin assignments below. Note the positive and negative pins
before connecting the cables.
Power LED Power Switch Speaker •• PLED/PWR_LED (Power LED):
System Status LED Connects to the power status indicator
on the chassis front panel. The LED is on
PLED+

S0 On
PW+

SPEAK+

when the system is operating. The LED is


SPEAK-

S3/S4/S5 Off
PLED-

off when the system is in S3/S4 sleep state


PW-

NC
NC

2 20
or powered off (S5). S S U
F_ •• PWF_(Power Switch):
1 19
Connects to the power switch on the chassis front panel. You may
5 4 3 2 1

configure the way to turn off your system using the power switch
PWR_LED+
PWR_LED-
PWR_LED-
HD-
RES+
CI+

(refer to Chapter 2, "BIOS Setup," "Power Management," for more


HD+
RES-

CI-

information).
•• SPEAK (Speaker):
Hard Drive Reset Power LED
Activity LED Switch
Chassis Intrusion
Connects to the speaker on the chassis front panel. The system reports
Header system startup status by issuing a beep code. One single short beep
will be heard if no problem is detected at system startup.
•• HD (Hard Drive Activity LED):
Connects to the hard drive activity LED on the chassis front panel. The LED is on when the hard drive
SS
is reading or writing data.
•• RES (Reset Switch):
1

1
_S
Connects to the reset switch on the chassis front panel. Press the reset switch to restart the computer
if the computer freezes and fails to perform a normal restart.
1

•• CI (Chassis Intrusion Header):


Connects to the chassis intrusion switch/sensor
_ on the chassis that can detect ifBthe
S_ chassis cover has
B B
been removed. This function requires a chassis with a chassis intrusion switch/sensor.
S •• NC: No connection.
1 2 3
1 2 3

The front panel design may differ by chassis. A front panel module mainly consists of power switch,
reset switch, power LED, hard drive activity LED, speaker and etc. When connecting your chassis
front panel module to this header,
S B_make sure the wire assignments and the pin assignments are
1 2 3

1 2 3

matched correctly. B

- 14 -

_ S

S_
_
B
7) F_AUDIO (Front Panel Audio Header)
The front panel audio header supports High Definition audio (HD). You may connect your chassis front
panel audio module to this header. Make sure the wire assignments of the module connector match the
pin assignments of the motherboard header. Incorrect connection between the module connector and the
motherboard header will make the device unable to work or even damage it.

Pin No. Definition Pin No. Definition


1 MIC2_L 6 Sense
9 1 2 GND 7 FAUDIO_JD
10 2
3 MIC2_R 8 No Pin
4 NC 9 LINE2_L
5 LINE2_R 10 Sense

Some chassis provide a front panel audio module that has separated connectors on each wire
instead of a single plug. For information about connecting the front panel audio module that has
different wire assignments, please contact the chassis manufacturer.

8) SPDIF_O (S/PDIF Out Header)


This header supports digital S/PDIF Out and connects a S/PDIF digital audio cable (provided by expansion
cards) for digital audio output from your motherboard to certain expansion cards like graphics cards and
sound cards. For example, some graphics cards may require you to use a S/PDIF digital audio cable for
digital audio output from your motherboard to your graphics card if you wish to connect an HDMI display
to the graphics card and have digital audio output from the HDMI display at the same time. For information
about connecting the S/PDIF digital audio cable, carefully read the manual for your expansion card.

Pin No. Definition


1 SPDIFO
1
2 GND

9) CLR_CMOS (Clear CMOS Jumper)


Use this jumper to clear the BIOS configuration and reset the CMOS values to factory defaults. To clear
the CMOS values, use a metal object like a screwdriver to touch the two pins for a few seconds.

Open: Normal

Short: Clear CMOS Values

•• Always turn off your computer and unplug the power cord from the power outlet before clearing
the CMOS values.
•• After system restart, go to BIOS Setup to load factory defaults (select Load Optimized Defaults) or
manually configure the BIOS settings (refer to Chapter 2, "BIOS Setup," for BIOS configurations).

- 15 -
F_USB30 F_ U F_ F_

10) F_USB30 (USB 3.0/2.0 Header)


The header conforms to USB 3.0/2.0 specification and can provide two USB ports. For purchasing the
optional 3.5" front panel that provides two USB 3.0/2.0 ports, please contact the local dealer.

Pin No. Definition Pin No. Definition


1 VBUS 11 D2+
20 1
2 SSRX1- 12 D2-
3 SSRX1+ 13 GND
4 GND 14 SSTX2+
B SS
B_ 5 SSTX1- 15 SSTX2-

1
6 SSTX1+ 161
GND
11 10 7 GND 171
SSRX2+ _S

1
8 D1- 18 SSRX2-
9 D1+ 19 VBUS
10 NC 20 No Pin
S
1 2 3

1 2 3
11) F_USB1/F_USB2 (USB 2.0/1.1 Headers)
The header conforms to USB 2.0/1.1 specification. Each USB header can provide two USB ports via an

1 2 3
S
optional USB bracket. For purchasing the optional USB bracket, please contact the local dealer.
1 2 3

S
Pin No. Definition Pin No. Definition
9 1 1 Power (5V) 6 USB DY+
10 2 2 Power (5V) 7 GND
3 USB DX- 8 GND
4 USB DY- 9 No Pin
G.QBOFM
5 USB DX+ 10 NC

•• Do not plug the IEEE 1394 bracket (2x5-pin) cable into the USB 2.0/1.1 header.
•• Prior to installing the USB bracket, be sure to turn off your computer and unplug the power cord
S 3
from the power outlet toB prevent
SS Sdamage to the USB bracket. U
_ _ 3

12) TPM (Trusted Platform Module Header) F_USB


You may connect a TPM (Trusted Platform Module) to this header.
S _
S F
Pin No. Definition _
Pin No. Definition
19 1 1 LCLK 11 LAD0
2 GND 12 GND
3 LFRAME 13 NC _ _B _
20 2
4 No Pin 14 NC
5 LRESET 15 SB3V
B_ _
DEBUG 6 SNC _S 16 SERIRQ
PORT 7 LAD3 17 GND
8 LAD2 18 NC
9 VCC3 19 NC
10 LAD1 20 SUSCLK
S _

- 16 -

_ S F_
13) BAT (Battery)
The battery provides power to keep the values (such as BIOS configurations, date, and time information)
in the CMOS when the computer is turned off. Replace the battery when the battery voltage drops to a low
level, or the CMOS values may not be accurate or may be lost.
You may clear the CMOS values by removing the battery:
1. Turn off your computer and unplug the power cord.
2. Gently remove the battery from the battery holder and wait for one minute. (Or use a
metal object like a screwdriver to touch the positive and negative terminals of the battery
holder, making them short for 5 seconds.)
3. Replace the battery.
4. Plug in the power cord and restart your computer.
•• Always turn off your computer and unplug the power cord before replacing the battery.
•• Replace the battery with an equivalent one. Danger of explosion if the battery is replaced with
an incorrect model.
•• Contact the place of purchase or local dealer if you are not able to replace the battery by yourself
or uncertain about the battery model.
•• When installing the battery, note the orientation of the positive side (+) and the negative side (-)
of the battery (the positive side should face up).
•• Used batteries must be handled in accordance with local environmental regulations.

Chapter 2 BIOS Setup


BIOS (Basic Input and Output System) records hardware parameters of the system in the CMOS on the
motherboard. Its major functions include conducting the Power-On Self-Test (POST) during system startup,
saving system parameters and loading operating system, etc. BIOS includes a BIOS Setup program that allows
the user to modify basic system configuration settings or to activate certain system features.
When the power is turned off, the battery on the motherboard supplies the necessary power to the CMOS to
keep the configuration values in the CMOS.
To access the BIOS Setup program, press the <Delete> key during the POST when the power is turned on.
To upgrade the BIOS, use either the GIGABYTE Q-Flash or @BIOS utility.
•• Q-Flash allows the user to quickly and easily upgrade or back up BIOS without entering the operating system.
•• @BIOS is a Windows-based utility that searches and downloads the latest version of BIOS from the Internet
and updates the BIOS.

•• Because BIOS flashing is potentially risky, if you do not encounter problems using the current version of BIOS,
it is recommended that you not flash the BIOS. To flash the BIOS, do it with caution. Inadequate BIOS flashing
may result in system malfunction.
•• It is recommended that you not alter the default settings (unless you need to) to prevent system instability or other
unexpected results. Inadequately altering the settings may result in system's failure to boot. If this occurs, try to
clear the CMOS values and reset the board to default values. (Refer to the "Load Optimized Defaults" section in
this chapter or introductions of the battery/clear CMOS jumper in Chapter 1 for how to clear the CMOS values.)

- 17 -
2-1 Startup Screen
The following startup Logo screen will appear when the computer boots.

Function Keys

On the main menu of the BIOS Setup program, press arrow keys to move among the items and press <Enter>
to accept or enter a sub-menu. Or you can use your mouse to select the item you want.

•• When the system is not stable as usual, select the Load Optimized Defaults item to set your system to its defaults.
•• The BIOS Setup menus described in this chapter are for reference only and may differ by BIOS version.

2-2 M.I.T.

This section provides information on the BIOS version, CPU base clock, CPU frequency, memory frequency,
total memory size, CPU temperature and CPU voltage, etc.
Whether the system will work stably with the overclock/overvoltage settings you made is dependent on your overall
system configurations. Incorrectly doing overclock/overvoltage may result in damage to CPU, chipset, or memory
and reduce the useful life of these components. This page is for advanced users only and we recommend you not to
alter the default settings to prevent system instability or other unexpected results. (Inadequately altering the settings
may result in system's failure to boot. If this occurs, clear the CMOS values and reset the board to default values.)

- 18 -
`` M.I.T. Current Status
This screen provides information on CPU/memory frequencies/parameters.

`` Advanced Frequency Settings


&& Graphics Slice Ratio
Allows you to set the Graphics Slice Ratio.
&& Graphics UnSlice Ratio
Allows you to set the Graphics UnSlice Ratio.

&& CPU Clock Ratio


Allows you to alter the clock ratio for the installed CPU. The adjustable range is dependent on the CPU
being installed.
&& CPU Frequency
Displays the current operating CPU frequency.

`` Advanced CPU Core Settings


&& CPU Clock Ratio, CPU Frequency
The settings above are synchronous to those under the same items on the Advanced Frequency Settings
menu.
&& Uncore Ratio
Allows you to set the CPU Uncore ratio. The adjustable range is dependent on the CPU being used.
&& Uncore Frequency
Displays the current CPU Uncore frequency.
&& CPU Flex Ratio Override
Enables or disables the CPU Flex Ratio. The maximum CPU clock ratio will be based on the CPU Flex
Ratio Settings value if CPU Clock Ratio is set to Auto. (Default: Disabled)
&& CPU Flex Ratio Settings
Allows you to set the CPU Flex Ratio. The adjustable range may vary by CPU. (Default: 20)
&& Intel(R) Turbo Boost Technology (Note)
Allows you to determine whether to enable the Intel® CPU Turbo Boost technology. Auto lets the BIOS
automatically configure this setting. (Default: Auto)
&& Turbo Ratio (Note)
Allows you to set the CPU Turbo ratios for different number of active cores. Auto sets the CPU Turbo ratios
according to the CPU specifications. (Default: Auto)
&& Power Limit TDP (Watts) / Power Limit Time
Allows you to set the power limit for CPU Turbo mode and how long it takes to operate at the specified
power limit. If the specified value is exceeded, the CPU will automatically reduce the core frequency in
order to reduce the power. Auto sets the power limit according to the CPU specifications. (Default: Auto)
&& Core Current Limit (Amps)
Allows you to set a current limit for CPU Turbo mode. When the CPU current exceeds the specified current
limit, the CPU will automatically reduce the core frequency in order to reduce the current. Auto sets the
power limit according to the CPU specifications. (Default: Auto)
&& No. of CPU Cores Enabled (Note)
Allows you to select the number of CPU cores to enable in an Intel® multi-core CPU (the number of CPU
cores may vary by CPU). Auto lets the BIOS automatically configure this setting. (Default: Auto)

(Note) This item is present only when you install a CPU that supports this feature. For more information about
Intel® CPUs' unique features, please visit Intel's website.
- 19 -
&& Hyper-Threading Technology (Note)
Allows you to determine whether to enable multi-threading technology when using an Intel® CPU that
supports this function. This feature only works for operating systems that support multi-processor mode.
Auto lets the BIOS automatically configure this setting. (Default: Auto)
&& CPU Enhanced Halt (C1E) (Note)
Enables or disables Intel® CPU Enhanced Halt (C1E) function, a CPU power-saving function in system halt
state. When enabled, the CPU core frequency and voltage will be reduced during system halt state to decrease
power consumption. Auto lets the BIOS automatically configure this setting. (Default: Auto)
&& C3 State Support (Note)
Allows you to determine whether to let the CPU enter C3 mode in system halt state. When enabled, the
CPU core frequency and voltage will be reduced during system halt state to decrease power consumption.
The C3 state is a more enhanced power-saving state than C1. Auto lets the BIOS automatically configure
this setting. (Default: Auto)
&& C6/C7 State Support (Note)
Allows you to determine whether to let the CPU enter C6/C7 mode in system halt state. When enabled, the
CPU core frequency and voltage will be reduced during system halt state to decrease power consumption.
The C6/C7 state is a more enhanced power-saving state than C3. Auto lets the BIOS automatically configure
this setting. (Default: Auto)
&& C8 State Support (Note)
Allows you to determine whether to let the CPU enter C8 mode in system halt state. When enabled, the CPU
core frequency and voltage will be reduced during system halt state to decrease power consumption. The
C8 state is a more enhanced power-saving state than C6/C7. Auto lets the BIOS automatically configure
this setting. (Default: Auto)
&& Package C State Limit (Note)
Allows you to specify the C-state limit for the processor. Auto lets the BIOS automatically configure this
setting. (Default: Auto)
&& CPU Thermal Monitor (Note)
Enables or disables Intel® Thermal Monitor function, a CPU overheating protection function. When enabled,
the CPU core frequency and voltage will be reduced when the CPU is overheated. Auto lets the BIOS
automatically configure this setting. (Default: Auto)
&& CPU EIST Function (Note)
Enables or disables Enhanced Intel® Speed Step Technology (EIST). Depending on CPU loading, Intel®
EIST technology can dynamically and effectively lower the CPU voltage and core frequency to decrease
average power consumption and heat production. Auto lets the BIOS automatically configure this setting.
(Default: Auto)
&& Voltage Optimization
Allows you to determine whether to enable voltage optimization to reduce power consumption. (Default:
Enabled)
&& RSR
Allows you to determine whether to automatically lower the CPU turbo ratio if the CPU voltage/temperature
is too high. (Default: Enabled)
&& Hardware Prefetcher
Allows you to determine whether to enable hardware prefetcher to prefetch data and instructions from the
memory into the cache. (Default: Enabled)
&& Adjacent Cache Line Prefetch
Allows you to determine whether to enable the adjacent cache line prefetch mechanism that lets the
processor retrieve the requested cache line as well as the subsequent cache line. (Default: Enabled)

(Note) This item is present only when you install a CPU that supports this feature. For more information about
Intel® CPUs' unique features, please visit Intel's website.
- 20 -
&& System Memory Multiplier
Allows you to set the system memory multiplier. Auto sets memory multiplier according to memory SPD
data. (Default: Auto)
&& Memory Frequency (MHz)
The first memory frequency value is the normal operating frequency of the memory being used; the second
is the memory frequency that is automatically adjusted according to the System Memory Multiplier settings.

`` Advanced Memory Settings


&& System Memory Multiplier, Memory Frequency(MHz)
The settings above are synchronous to those under the same items on the Advanced Frequency Settings
menu.
&& Memory Boot Mode (Note)
Provides memory detection and training methods.

Auto Lets the BIOS automatically configure this setting. (Default)

Enable Fast Boot Skip memory detection and training in some specific criteria for faster memory
boot.

Disable Fast Boot Detect and train memory at every single boot.

&& Memory Enhancement Settings


Provides several memory performance enhancement settings: Normal (basic performance), Relax OC,
Enhanced Stability, and Enhanced Performance. (Default: Normal)
&& Memory Timing Mode
Manual and Advanced Manual allows the Memory Multiplier Tweaker, Channel Interleaving, Rank
Interleaving, and memory timing settings below to be configurable. Options are: Auto (default), Manual,
Advanced Manual.
&& Profile DDR Voltage
Displays the memory voltage.
&& Memory Multiplier Tweaker
Provides different levels of memory auto-tuning. (Default: Auto)
&& Channel Interleaving
Enables or disables memory channel interleaving. Enabled allows the system to simultaneously access
different channels of the memory to increase memory performance and stability. Auto lets the BIOS
automatically configure this setting. (Default: Auto)
&& Rank Interleaving
Enables or disables memory rank interleaving. Enabled allows the system to simultaneously access different
ranks of the memory to increase memory performance and stability. Auto lets the BIOS automatically
configure this setting. (Default: Auto)

`` IMC Timing Settings


This sub-menu provides options for tuning memory compatibility and stability.

`` Channel A/B Memory Sub Timings


This sub-menu provides memory timing settings for each channel of memory. The respective timing setting
screens are configurable only when Memory Timing Mode is set to Manual or Advanced Manual. Note:
Your system may become unstable or fail to boot after you make changes on the memory timings. If this
occurs, please reset the board to default values by loading optimized defaults or clearing the CMOS values.

(Note) This item is present only when you install a CPU and a memory module that support this feature.

- 21 -
`` Advanced Voltage Settings
`` Advanced Power Settings
&& CPU Vcore Loadline Calibration
Allows you to configure Load-Line Calibration for the CPU Vcore voltage. Selecting a higher level keeps
the CPU Vcore voltage more consistent with what is set in BIOS under heavy load. Auto lets the BIOS
automatically configure this setting and sets the voltage following Intel's specifications. (Default: Auto)
&& VAXG Loadline Calibration
Allows you to configure Load-Line Calibration for the CPU VAXG voltage. Selecting a higher level keeps
the CPU VAXG voltage more consistent with what is set in BIOS under heavy load. Auto lets the BIOS
automatically configure this setting and sets the voltage following Intel's specifications. (Default: Auto)

`` CPU Core Voltage Control


This section provides CPU voltage control options.

`` DRAM Voltage Control


This section provides memory voltage control options.

`` Internal VR Control
This section provides VR voltage control options.

`` PC Health Status
&& Reset Case Open Status

Disabled Keeps or clears the record of previous chassis intrusion status. (Default)

Enabled  Clears the record of previous chassis intrusion status and the Case Open field will
show "No" at next boot.
&& Case Open
Displays the detection status of the chassis intrusion detection device attached to the motherboard CI
header. If the system chassis cover is removed, this field will show "Yes", otherwise it will show "No". To
clear the chassis intrusion status record, set Reset Case Open Status to Enabled, save the settings to
the CMOS, and then restart your system.
&& CPU Vcore/CPU VCCSA/DRAM Channel A/B Voltage/+3.3V/+5V/+12V/CPU VAXG
Displays the current system voltages.
&& CPU/System Temperature
Displays current CPU/system temperature.
&& CPU/System Fan Speed
Displays current CPU/system fan speeds.
&& CPU/System Temperature Warning
Sets the warning threshold for CPU/system temperature. When temperature exceeds the threshold, BIOS
will emit warning sound. Options are: Disabled (default), 60oC/140oF, 70oC/158oF, 80oC/176oF, 90oC/194oF.
&& CPU/System Fan Fail Warning
Allows the system to emit warning sound if the fan is not connected or fails. Check the fan condition or fan
connection when this occurs. (Default: Disabled)

- 22 -
&& CPU Fan Speed Control (CPU_FAN Connector)
Allows you to determine whether to enable the fan speed control function and adjust the fan speed.

Normal  Allows the fan to run at different speeds according to the CPU temperature. You
can adjust the fan speed with System Information Viewer based on your system
requirements. (Default)

Silent Allows the fan to run at slow speeds.

Manual Allows you to control the fan speed under the Fan Speed Percentage item.
 Speed
Full Allows the fan to run at full speeds.
&& Fan Speed Percentage
Allows you to control the fan speed. This item is configurable only when CPU Fan Speed Control is set
to Manual. Options are: 0.75 PWM value /oC ~ 2.50 PWM value /oC.
&& System Fan Speed Control (SYS_FAN Connector)
Allows you to determine whether to enable the fan speed control function and adjust the fan speed.

Normal  Allows the fan to run at different speeds according to the system temperature. You
can adjust the fan speed with System Information Viewer based on your system
requirements. (Default)

Silent Allows the fan to run at slow speeds.

Manual Allows you to control the fan speed under the Fan Speed Percentage item.
 Speed
Full Allows the fan to run at full speeds.
&& Fan Speed Percentage
Allows you to control the fan speed. This item is configurable only when System Fan Speed Control is
set to Manual. Options are: 0.75 PWM value /oC ~ 2.50 PWM value /oC.

`` Miscellaneous Settings
&& Max Link Speed
Allows you to set the operation mode of the PCI Express slots to Gen 1, Gen 2, or Gen 3. Actual operation
mode is subject to the hardware specification of each slot. Auto lets the BIOS automatically configure this
setting. (Default: Auto)
&& 3DMark01 Enhancement
Allows you to determine whether to enhance some legacy benchmark performance. (Default: Disabled)

- 23 -
2-3 System Information

This section provides information on your motherboard model and BIOS version. You can also select the default
language used by the BIOS and manually set the system time.

&& System Language


Selects the default language used by the BIOS.
&& System Date
Sets the system date. The date format is week (read-only), month, date, and year. Use <Enter> to switch
between the Month, Date, and Year fields and use the <Page Up> or <Page Down> key to set the desired
value.
&& System Time
Sets the system time. The time format is hour, minute, and second. For example, 1 p.m. is 13:00:00. Use
<Enter> to switch between the Hour, Minute, and Second fields and use the <Page Up> or <Page Down>
key to set the desired value.
&& Access Level
Displays the current access level depending on the type of password protection used. (If no password is
set, the default will display as Administrator.) The Administrator level allows you to make changes to all
BIOS settings; the User level only allows you to make changes to certain BIOS settings but not all.

- 24 -
2-4 BIOS Features

&& Boot Option Priorities


Specifies the overall boot order from the available devices. Removable storage devices that support GPT
format will be prefixed with "UEFI:" string on the boot device list. To boot from an operating system that
supports GPT partitioning, select the device prefixed with "UEFI:" string.
Or if you want to install an operating system that supports GPT partitioning such as Windows 7 64-bit, select
the optical drive that contains the Windows 7 64-bit installation disc and is prefixed with "UEFI:" string.
&& Hard Drive/CD/DVD ROM Drive/Floppy Drive/Network Device BBS Priorities
Specifies the boot order for a specific device type, such as hard drives, optical drives, floppy disk drives,
and devices that support Boot from LAN function, etc. Press <Enter> on this item to enter the submenu that
presents the devices of the same type that are connected. This item is present only if at least one device
for this type is installed.
&& Bootup NumLock State
Enables or disables Numlock feature on the numeric keypad of the keyboard after the POST. (Default: On)
&& Security Option
Specifies whether a password is required every time the system boots, or only when you enter BIOS Setup.
After configuring this item, set the password(s) under the Administrator Password/User Password item.

Setup A password is only required for entering the BIOS Setup program.

System  A password is required for booting the system and for entering the BIOS Setup
program. (Default)
&& Full Screen LOGO Show
Allows you to determine whether to display the GIGABYTE Logo at system startup. Disabled skips the
GIGABYTE Logo when the system starts up. (Default: Enabled)

&& Fast Boot


Enables or disables Fast Boot to shorten the OS boot process. Ultra Fast provides the fastest bootup
speed. (Default: Disabled)

- 25 -
&& SATA Support
 Sata Devices All SATA devices are functional in the operating system and during the POST.
All
(Default)

Last Boot HDD Only Except for the previous boot drive, all SATA devices are disabled before the OS
boot process completes.
This item is configurable only when Fast Boot is set to Enabled or Ultra Fast.
&& VGA Support
Allows you to select which type of operating system to boot.

Auto Enables legacy option ROM only.
 Driver
EFI Enables EFI option ROM. (Default)
This item is configurable only when Fast Boot is set to Enabled or Ultra Fast.
&& USB Support

Disabled All USB devices are disabled before the OS boot process completes.
 Initial
Full All USB devices are functional in the operating system and during the POST.

Partial Initial Part of the USB devices are disabled before the OS boot process completes.
(Default)
This item is configurable only when Fast Boot is set to Enabled. This function is disabled when Fast Boot
is set to Ultra Fast.
&& PS2 Devices Support

Disabled All PS/2 devices are disabled before the OS boot process completes.

Enabled  All PS/2 devices are functional in the operating system and during the POST.
(Default)
This item is configurable only when Fast Boot is set to Enabled. This function is disabled when Fast Boot
is set to Ultra Fast.
&& NetWork Stack Driver Support

Disabled Disables booting from the network. (Default)

Enabled Enables booting from the network.
This item is configurable only when Fast Boot is set to Enabled or Ultra Fast.
&& Next Boot After AC Power Loss

Normal Boot Enables normal bootup upon the return of the AC power. (Default)

Fast Boot Keeps the Fast Boot settings upon the return of the AC power.
This item is configurable only when Fast Boot is set to Enabled or Ultra Fast.

&& Windows 8/10 Features


Allows you to select the operating system to be installed. (Default: Other OS)
&& CSM Support
Enables or disables UEFI CSM (Compatibility Support Module) to support a legacy PC boot process.

Enabled Enables UEFI CSM. (Default)

Disabled Disables UEFI CSM and supports UEFI BIOS boot process only.
This item is configurable only when Windows 8/10 Features is set to Windows 8/10 or Windows 8/10
WHQL.
&& LAN PXE Boot Option ROM
Allows you to select whether to enable the legacy option ROM for the LAN controller. (Default: Disabled)
This item is configurable only when CSM Support is set to Enabled.
&& Storage Boot Option Control
Allows you to select whether to enable the UEFI or legacy option ROM for the storage device controller.

Disabled Disables option ROM.

Legacy Only Enables legacy option ROM only. (Default)

UEFI Only Enables UEFI option ROM only.
This item is configurable only when CSM Support is set to Enabled.

- 26 -
&& Other PCI Device ROM Priority
Allows you to select whether to enable the UEFI or Legacy option ROM for the PCI device controller other
than the LAN, storage device, and graphics controllers.

Disabled Disables option ROM.

Legacy Only Enables legacy option ROM only.

UEFI Only Enables UEFI option ROM only. (Default)
This item is configurable only when CSM Support is set to Enabled.
&& Network Stack
Disables or enables booting from the network to install a GPT format OS, such as installing the OS from
the Windows Deployment Services server. (Default: Disabled)
&& Ipv4 PXE Support
Enables or disables IPv4 PXE Support. This item is configurable only when Network Stack is enabled.
&& Ipv6 PXE Support
Enables or disables IPv6 PXE Support. This item is configurable only when Network Stack is enabled.

&& Administrator Password


Allows you to configure an administrator password. Press <Enter> on this item, type the password, and
then press <Enter>. You will be requested to confirm the password. Type the password again and press
<Enter>. You must enter the administrator password (or user password) at system startup and when entering
BIOS Setup. Differing from the user password, the administrator password allows you to make changes to
all BIOS settings.
&& User Password
Allows you to configure a user password. Press <Enter> on this item, type the password, and then press
<Enter>. You will be requested to confirm the password. Type the password again and press <Enter>.
You must enter the administrator password (or user password) at system startup and when entering BIOS
Setup. However, the user password only allows you to make changes to certain BIOS settings but not all.

To cancel the password, press <Enter> on the password item and when requested for the password, enter
the correct one first. When prompted for a new password, press <Enter> without entering any password.
Press <Enter> again when prompted to confirm.
NOTE: Before setting the User Password, be sure to set the Administrator Password first.

- 27 -
2-5 Peripherals

&& Intel Platform Trust Technology (PTT)


Enables or disables Intel® PTT Technology. (Default: Disabled)

&& Initial Display Output


Specifies the first initiation of the monitor display from the installed PCI Express graphics card or the onboard
graphics.

IGFX Sets the onboard graphics as the first display.

PCIe 1 Slot Sets the graphics card on the PCIEX16 slot as the first display. (Default)
&& OnBoard LAN Controller
Enables or disables the onboard LAN function. (Default: Enabled)
If you wish to install a 3rd party add-in network card instead of using the onboard LAN, set this item to
Disabled.
&& Legacy USB Support
Allows USB keyboard/mouse to be used in MS-DOS. (Default: Enabled)
&& XHCI Hand-off
Determines whether to enable XHCI Hand-off feature for an operating system without XHCI Hand-off
support. (Default: Disabled)
&& USB Mass Storage Driver Support
Enables or disables support for USB storage devices. (Default: Enabled)
&& USB Storage Devices
Displays a list of connected USB mass storage devices. This item appears only when a USB storage device
is installed.

`` OffBoard SATA Controller Configuration


Displays information on your PCIe SSD if installed.

`` Trusted Computing 2.0


This sub-menu appears only when Intel Platform Trust Technology is set to Enabled.

- 28 -
&& Security Device Support
Enables or disables Trusted Platform Module (TPM). (Default: Enable)
&& Pending operation
To clear TPM related settings, set this item to TPM Clear. (Default: None)
&& TPM 20 InterfaceType
Allows you to select the communication interface for the TPM 2.0 device. Set to External TPM2.0 if you
install an Infineon TPM 2.0 module (optional). (Default: PTT)
&& Device Select
Allows you to select whether to support TPM 1.2 or TPM 2.0 device. Auto lets the BIOS automatically
configure this setting. (Default: Auto)

`` Intel(R) Bios Guard Technology


Enables or disables the Intel® BIOS Guard feature, which protects the BIOS from malicious attacks.

`` SATA Configuration
&& SATA Controller(s)
Enables or disables the integrated SATA controllers. (Default: Enabled)
&& SATA Mode Selection

AHCI Configures the SATA controllers to AHCI mode. Advanced Host Controller Interface
(AHCI) is an interface specification that allows the storage driver to enable advanced
Serial ATA features such as Native Command Queuing and hot plug. (Default)
&& Aggressive LPM Support
Enables or disables the power saving feature, ALPM (Aggressive Link Power Management), for the Chipset
SATA controllers. (Default: Enabled)
&& Port 0/1/2/3
Enables or disables each SATA port. (Default: Enabled)
&& Hot plug
Enables or disable the hot plug capability for each SATA port. (Default: Disabled)
&& External SATA
Enables or disables support for external SATA devices. (Default: Disabled)

`` NVMe Configuration
Displays information on your NVME PCIe SSD if installed.

`` Realtek PCIe GBE Family Controller


This sub-menu provides information on LAN configuration and related configuration options.

- 29 -
2-6 Chipset

&& VT-d (Note)


Enables or disables Intel® Virtualization Technology for Directed I/O. (Default: Disabled)
&& Internal Graphics
Enables or disables the onboard graphics function. (Default: Auto)
&& DVMT Pre-Allocated
Allows you to set the onboard graphics memory size. Options are: 32M~512M. (Default: 64M)
&& DVMT Total Gfx Mem
Allows you to allocate the DVMT memory size of the onboard graphics. Options are: 128M, 256M, MAX.
(Default: 256M)
&& Audio Controller
Enables or disables the onboard audio function. (Default: Enabled)
If you wish to install a 3rd party add-in audio card instead of using the onboard audio, set this item to
Disabled.

&& High Precision Timer


Enables or disables High Precision Event Timer (HPET) in the operating system. (Default: Enabled)

(Note) This item is present only when you install a CPU that supports this feature. For more information about
Intel® CPUs' unique features, please visit Intel's website.
- 30 -
2-7 Power Management

&& AC BACK
Determines the state of the system after the return of power from an AC power loss.

Always Off The system stays off upon the return of the AC power. (Default)

Always On The system is turned on upon the return of the AC power.

Memory The system returns to its last known awake state upon the return of the AC power.
&& Power On By Keyboard
Allows the system to be turned on by a PS/2 keyboard wake-up event.
Note: To use this function, you need an ATX power supply providing at least 1A on the +5VSB lead.

Disabled Disables this function. (Default)
 Key
Any Press any key to turn on the system.

Keyboard 98 Press POWER button on the Windows 98 keyboard to turn on the system.

Password Set a password with 1~5 characters to turn on the system.
&& Power On Password
Set the password when Power On By Keyboard is set to Password.
Press <Enter> on this item and set a password with up to 5 characters and then press <Enter> to accept.
To turn on the system, enter the password and press <Enter>.
Note: To cancel the password, press <Enter> on this item. When prompted for the password, press <Enter>
again without entering the password to clear the password settings.
&& Power On By Mouse
Allows the system to be turned on by a PS/2 mouse wake-up event.
Note: To use this function, you need an ATX power supply providing at least 1A on the +5VSB lead.

Disabled Disables this function. (Default)

Move Move the mouse to turn on the system.

Double Click Double click on left button on the mouse to turn on the system.
&& ErP
Determines whether to let the system consume least power in S5 (shutdown) state. (Default: Disabled)
Note: When this item is set to Enabled, the following functions will become unavailable: Resume by Alarm,
PME event wake up, power on by mouse, power on by keyboard, and wake on LAN.

- 31 -
&& Soft-Off by PWR-BTTN
Configures the way to turn off the computer in MS-DOS mode using the power button.

Instant-Off Press the power button and then the system will be turned off instantly. (Default)

Delay 4 Sec. Press and hold the power button for 4 seconds to turn off the system. If the power
button is pressed for less than 4 seconds, the system will enter suspend mode.
&& Power Loading
Enables or disables dummy load. When the power supply is at low load, a self-protection will activate causing
it to shutdown or fail. If this occurs, please set to Enabled. Auto lets the BIOS automatically configure this
setting. (Default: Auto)
&& Resume by Alarm
Determines whether to power on the system at a desired time. (Default: Disabled)
If enabled, set the date and time as following:

Wake up day: Turn on the system at a specific time on each day or on a specific day in a month.

Wake up hour/minute/second: Set the time at which the system will be powered on automatically.
Note: When using this function, avoid inadequate shutdown from the operating system or removal of the
AC power, or the settings may not be effective.

&& RC6(Render Standby)


Allows you to determine whether to let the onboard graphics enter standby mode to decrease power
consumption. (Default: Enabled)

&& Platform Power Management


Enables or disables the Active State Power Management function (ASPM). (Default: Disabled)
&& PEG ASPM
Allows you to configure the ASPM mode for the device connected to the CPU PEG bus. This item is
configurable only when Platform Power Management is set to Enabled. (Default: Enabled)
&& PCH ASPM
Allows you to configure the ASPM mode for the device connected to Chipset's PCI Express bus. This item
is configurable only when Platform Power Management is set to Enabled. (Default: Enabled)
&& DMI Link ASPM Control
Allows you to configure the ASPM mode for both CPU side and Chipset side of the DMI link. This item is
configurable only when Platform Power Management is set to Enabled. (Default: Enabled)

- 32 -
2-8 Save & Exit

&& Save & Exit Setup


Press <Enter> on this item and select Yes. This saves the changes to the CMOS and exits the BIOS Setup
program. Select No or press <Esc> to return to the BIOS Setup Main Menu.
&& Exit Without Saving
Press <Enter> on this item and select Yes. This exits the BIOS Setup without saving the changes made
in BIOS Setup to the CMOS. Select No or press <Esc> to return to the BIOS Setup Main Menu.
&& Load Optimized Defaults
Press <Enter> on this item and select Yes to load the optimal BIOS default settings. The BIOS defaults
settings help the system to operate in optimum state. Always load the Optimized defaults after updating
the BIOS or after clearing the CMOS values.
&& Boot Override
Allows you to select a device to boot immediately. Press <Enter> on the device you select and select Yes
to confirm. Your system will restart automatically and boot from that device.
&& Save Profiles
This function allows you to save the current BIOS settings to a profile. You can create up to 8 profiles and
save as Setup Profile 1~ Setup Profile 8. Press <Enter> to complete. Or you can select Select File in
HDD/FDD/USB to save the profile to your storage device.
&& Load Profiles
If your system becomes unstable and you have loaded the BIOS default settings, you can use this function
to load the BIOS settings from a profile created before, without the hassles of reconfiguring the BIOS
settings. First select the profile you wish to load and then press <Enter> to complete. You can select Select
File in HDD/FDD/USB to input the profile previously created from your storage device or load the profile
automatically created by the BIOS, such as reverting the BIOS settings to the last settings that worked
properly (last known good record).

- 33 -
Chapter 3 Drivers Installation
• Before installing the drivers, first install the operating system. (The following instructions use
Windows 8.1 as the example operating system.)
• After installing the operating system, insert the motherboard driver disc into your optical drive. Click
on the message "Tap to choose what happens with this disc" on the top-right corner of the screen
and select "Run Run.exe." (Or go to My Computer, double-click the optical drive and execute the
Run.exe program.)

"Xpress Install" will automatically scan your system and then list all of the drivers that are recommended to
install. You can click the Xpress Install button and "Xpress Install" will install all of the selected drivers. Or click
the arrow icon to individually install the drivers you need.

Please visit GIGABYTE's website for more software information.

Please visit GIGABYTE's website for more troubleshooting information.

- 34 -
Regulatory Notices
United States of America, Federal Communications Commission Statement

Supplier's Declaration of Conformity


47 CFR § 2.1077 Compliance Information

Product Name: Motherboard


Trade Name: GIGABYTE
Model Number: GA-H110M-H

Responsible Party – U.S. Contact Information: G.B.T. Inc.


Address: 17358 Railroad street, City Of Industry, CA91748
Tel.: 1-626-854-9338
Internet contact information: https://www.gigabyte.com

FCC Compliance Statement:


This device complies with Part 15 of the FCC Rules, Subpart B, Unintentional Radiators.
Operation is subject to the following two conditions: (1) This device may not cause harmful interference, and (2) this
device must accept any interference received, including interference that may cause undesired operation.

This equipment has been tested and found to comply with the limits for WEEE Symbol Statement
a Class B digital device, pursuant to Part 15 of the FCC Rules. These The symbol shown below is on the product or on its
limits are designed to provide reasonable protection against harmful packaging, which indicates that this product must not be
interference in a residential installation. This equipment generates, disposed of with other waste. Instead, the device should
uses and can radiate radio frequency energy and, if not installed be taken to the waste collection centers for activation of
and used in accordance with manufacturer's instructions, may cause the treatment, collection, recycling and disposal procedure.
harmful interference to radio communications. However, there is no
guarantee that interference will not occur in a particular installation. If For more information about where you can drop off your waste equipment
this equipment does cause harmful interference to radio or television for recycling, please contact your local government office, your household
reception, which can be determined by turning the equipment off and waste disposal service or where you purchased the product for details
on, the user is encouraged to try to correct the interference by one or of environmentally safe recycling.
more of the following measures: End of Life Directives-Recycling
•• Reorient or relocate the receiving antenna. The symbol shown below is on the product or on its
•• Increase the separation between the equipment and receiver. packaging, which indicates that this product must not be
•• Connect the equipment to an outlet on a circuit different from that to disposed of with other waste. Instead, the device should
which the receiver is connected. be taken to the waste collection centers for activation of the
•• Consult the dealer or an experienced radio/TV technician for help. treatment, collection, recycling and disposal procedure.
Canadian Department of Communications Statement Déclaration de Conformité aux Directives de l'Union européenne (UE)
This digital apparatus does not exceed the Class B limits for radio Cet appareil portant la marque CE est conforme aux directives de
noise emissions from digital apparatus set out in the Radio Interference l'UE suivantes: directive Compatibilité Electromagnétique 2014/30/
Regulations of the Canadian Department of Communications. This class UE, directive Basse Tension 2014/35/UE et directive RoHS II 2011/65/
B digital apparatus complies with Canadian ICES-003. UE. La conformité à ces directives est évaluée sur la base des normes
Avis de conformité à la réglementation d'Industrie Canada européennes harmonisées applicables.
Cet appareil numérique de la classe B est conforme à la norme NMB- European Union (EU) CE-Konformitätserklärung
003 du Canada. Dieses Produkte mit CE-Kennzeichnung erfüllen folgenden EU-
European Union (EU) CE Declaration of Conformity Richtlinien: EMV-Richtlinie 2014/30/EU, Niederspannungsrichtlinie
This device complies with the following directives: Electromagnetic 2014/30/EU und RoHS-Richtlinie 2011/65/EU erfüllt. Die Konformität mit
Compatibility Directive 2014/30/EU, Low-voltage Directive 2014/35/ diesen Richtlinien wird unter Verwendung der entsprechenden Standards
EU, RoHS directive (recast) 2011/65/EU & the 2015/863 Statement. zurEuropäischen Normierung beurteilt.
This product has been tested and found to comply with all essential CE declaração de conformidade
requirements of the Directives. Este produto com a marcação CE estão em conformidade com das
European Union (EU) RoHS (recast) Directive 2011/65/EU & the seguintes Diretivas UE: Diretiva Baixa Tensão 2014/35/EU; Diretiva
European Commission Delegated Directive (EU) 2015/863 Statement CEM 2014/30/EU; Diretiva RSP 2011/65/UE. A conformidade com estas
GIGABYTE products have not intended to add and safe from hazardous diretivas é verificada utilizando as normas europeias harmonizadas.
substances (Cd, Pb, Hg, Cr+6, PBDE, PBB, DEHP, BBP, DBP and DIBP). CE Declaración de conformidad
The parts and components have been carefully selected to meet RoHS Este producto que llevan la marca CE cumplen con las siguientes
requirement. Moreover, we at GIGABYTE are continuing our efforts to Directivas de la Unión Europea: Directiva EMC (2014/30/EU), Directiva
develop products that do not use internationally banned toxic chemicals. de bajo voltaje (2014/35/EU), Directiva RoHS (recast) (2011/65/EU).
European Union (EU) Community Waste Electrical & Electronic El cumplimiento de estas directivas se evalúa mediante las normas
Equipment (WEEE) Directive Statement europeas armonizadas.
GIGABYTE will fulfill the national laws as interpreted from the 2012/19/ Dichiarazione di conformità CE
EU WEEE (Waste Electrical and Electronic Equipment) (recast) directive. Questo prodotto è conforme alle seguenti direttive: Direttiva sulla
The WEEE Directive specifies the treatment, collection, recycling and compatibilità elettromagnetica 2014/30/UE, Direttiva sulla bassa tensione
disposal of electric and electronic devices and their components. Under 2014/35/UE, Direttiva RoHS (rifusione) 2011/65/UE. Questo prodotto è
the Directive, used equipment must be marked, collected separately, stato testato e trovato conforme a tutti i requisiti essenziali delle Direttive.
and disposed of properly.

- 35 -
Contact Us

GIGA-BYTE TECHNOLOGY CO., LTD.


Address: No.6, Baoqiang Rd., Xindian Dist., New Taipei City 231, Taiwan
TEL: +886-2-8912-4000, FAX: +886-2-8912-4005
Tech. and Non-Tech. Support (Sales/Marketing) : https://esupport.gigabyte.com
WEB address (English): https://www.gigabyte.com
WEB address (Chinese): https://www.gigabyte.com/tw

•• GIGABYTE eSupport
To submit a technical or non-technical (Sales/Marketing) question, please link to:
https://esupport.gigabyte.com

- 36 -

También podría gustarte