logo

eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee

Unnamed repository; edit this file 'description' to name the repository. git clone https://hacktivis.me/git/mirror/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee.git

e.mbr.asm (418B)


  1. bits 16
  2. org 0x7C00
  3. _start:
  4. ; enable cursor
  5. xor cx, cx
  6. mov ch, 00100000b
  7. mov ah, 1
  8. int 0x10
  9. ; move cursor to top
  10. xor dx, dx
  11. xor bx, bx
  12. inc ah
  13. int 0x10
  14. ; print 1 char
  15. mov ax, 'e'|(0x0E<<8)
  16. .loop:
  17. int 0x10
  18. jmp short .loop
  19. END:
  20. times 0x200-2-(END-_start) db 'e'
  21. db 0x55,0xAA
  22. stack:
  23. %if END-_org > 0x200-2
  24. %error "Not enough space!"
  25. %endif