This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
segment .data | |
A: dd 2002 | |
segment .bss | |
M: resd 1 | |
N: resd 1 | |
a: resd 1 | |
aux: resd 1 | |
b: resd 1 | |
c: resd 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(browse-url-browser-function (quote browse-url-firefox)) | |
'(case-fold-search t) | |
'(current-language-environment "ASCII") | |
'(global-font-lock-mode t nil (font-lock)) | |
'(haskell-font-lock-symbols t) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
segment .data | |
notas: dd 1,2,3,4,5,6,7,8,9,10 | |
veinte: dd 0.20 | |
segment .bss | |
segment .text | |
global main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
segment .data | |
notas: dd 1,2,3,4,5,6,7,8,9,10 | |
total: dd 0 | |
segment .bss | |
segment .text | |
global main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\subsection{Multiplaci\'on de matriz por un escalar} | |
Refinaci\'on para la multiplicaci\'on de una matriz por un escalar. | |
\subsubsection{Vista general} | |
Idea general de como se realiza la multiplicaci\'on de una matriz por un escalar. | |
\begin{figure}[!h] | |
\centering | |
\includegraphics[width=3in]{escalar1} | |
\caption{Matriz por escalar} | |
\label{fig_sim} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127.0.0.1 www.facebook.com <http://www.facebook.com> | |
127.0.0.1 www.twitter.com <http://www.twitter.com> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127.0.0.1 www.facebook.com <http://www.facebook.com> | |
127.0.0.1 www.twitter.com <http://www.twitter.com> | |
127.0.0.1 www.reddit.com <http://www.reddit.com> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
segment .data | |
matriz1: dd 1,2,3,4,5,6,7,8,9,10 | |
matriz2: dd 1,2,3,4,5,6,7,8,9,10 | |
segment .bss | |
matriz3: resd 10 | |
segment .text | |
global main | |
main: | |
cld | |
mov esi,matriz1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[12pt]{article} | |
\usepackage{graphicx} | |
\usepackage{amsfonts,amsmath,amssymb,latexsym} | |
\begin{document} | |
\section{Tabla facil} | |
\begin{tabular}{|l|l|l|} | |
\hline | |
estudiante & oarcial1 & parcial2 \\ | |
\hline | |
sara & 0 & 0 \\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Tabs replacement | |
(setq-default indent-tabs-mode nil) |