Toggle navigation
Inicio
Artículos
PROGRAMACIÓN GENERAL
C / C++ / C#
Java
Visual Basic
Objective-C
Python
Perl
Ruby
Delphi
PROGRAMACIÓN WEB
ASP
PHP
HTML
CSS
Javascript
Aplicaciones prefabricadas
BASES DE DATOS
SQL
Mongo DB
Oracle
MySQL
SQL Server
PROGRAMACIÓN APPs
Android
iOS
WindowsPhone
BlackBerry
Tutoriales
(current)
PROGRAMACIÓN GENERAL
C / C++ / C#
Java
Visual Basic
Objective-C
Python
Perl
Ruby
Delphi
PROGRAMACIÓN WEB
ASP
PHP
HTML
CSS
Javascript
Aplicaciones prefabricadas
BASES DE DATOS
SQL
Mongo DB
Oracle
MySQL
SQL Server
PROGRAMACIÓN APPs
Android
iOS
WindowsPhone
BlackBerry
Noticias
Foros
Eventos
Empleo
Inicio
Foros
Foros de Ensamblador
Como se hace un bucle?
×
Conéctate a Programacion.net
Conectarme a Programacion.net
Como se hace un bucle?
bkn-2005
03 de Abril del 2005
como se hace un bucle en ensamblador?
como se multiplican 2 numeros?
help
Manuel
03 de Abril del 2005
Bucle con 1000 iteraciones
mov ecx,1000
Bucle:
....
....
instrucciones
....
....
dec ecx
cmp ecx,0
jne Bucle
Multiplicar ?
mov edx,0
mov eax,Val1
mov ecx,Val2
mul ecx
; edx:eax = eax * ecx
Saludos.