Hoy vamos a
terminar de completar las funciones básicas para poder crear programas. Y lo haremos con unas funciones de presentación
de errores.
Como siempre
primero las cabeceras.
A partir de ahora
ya tenemos una librería básica bastante potente para poder hacer casi de todo.
ERROR.MAC
; Copyright (C) 2013 José Ángel Moneo Fernández ; This program is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; You should have received a copy of the GNU General Public License ; along with this program. If not, see <http://www.gnu.org/licenses/>.
errext
macro
ifndef
_print_error
extrn _print_error:near
endif
call _print_error
endm
perror
macro numero
ifndef
_p_error
extrn _p_error:near
endif
mov ax,numero
push ax
call _p_error
pop ax
endm
No hay comentarios:
Publicar un comentario
Si tienes algún comentario, duda o sugerencia, o si quieres aportar algún código creado a partir de las librerías expuestas aquí, por favor, indícamelo.