"Me llamo Isabella. No, no tengo otro nombre. ¿Por qué preguntas? Oh mira, una mariposa con alas de cristal. ¿Puedo quedármela?" — Isabella, ignorando una emboscada de goblins
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
| # Ejecutar como administrador | |
| $logPath = Join-Path -Path $PSScriptRoot -ChildPath "instalador.log" | |
| function Write-Log { | |
| param ( | |
| [string]$Message, | |
| [string]$Level = "INFO" | |
| ) | |
| $timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss" | |
| $line = "[$timestamp] [$Level] $Message" |
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
| GLOBAL main | |
| section .data | |
| powr DD 1.0 ;resulatdo de la potencia | |
| pown DB 3 ;potencia | |
| base DD 0.32;base | |
| section .text | |
| finit | |
| main: |