This file contains 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
{ | |
"id_transaction": "5e70739c2f877e5dd736e8fb", | |
"id_account": "5db073b1caaf236a6a4c2acc", | |
"id_account_type": "546d4904df527d1844a2e18d", | |
"id_credential": "5e73bfe6d036f64a591d8822", | |
"id_currency": "523a25953b8e77910e8b456c", | |
"id_disable_type": null, | |
"id_external": "", | |
"id_site": "5da784f1f9de2a06483abec1", | |
"id_site_organization": "56cf4ff5784806152c8b4567", |
This file contains 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
name "Automata a^2nb^n" | |
org 100h | |
.data | |
input DB 31 DUP(?),"$" | |
inputSize dw ? | |
autCounter dw 0 | |
numCondAut DB 3 | |
msg db 13,10, "Please type it: $" | |
success db 13,10,"Valid input! $" | |
fail db 13,10,"Invalid input... $" |
This file contains 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
MPRINTARR MACRO | |
mov ecx, lengthArr | |
mov esi, OFFSET milista | |
PRINTLOOP: | |
mov eax, [esi] | |
call WriteDec | |
mWrite " " | |
add esi,4 | |
LOOP PRINTLOOP | |
Call Crlf |
This file contains 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
TITLE "EXAMEN 2" | |
INCLUDE Irvine32.inc | |
INCLUDE Macros.inc | |
.data | |
bienvenidamsj BYTE "Examen segundo parcial, bienvenido",0 | |
input BYTE 31 DUP(?) | |
ACounter SDWORD 0 | |
CCounter SDWORD 0 |