diff --git a/esercizio_stack.asm b/esercizio_stack.asm deleted file mode 100644 index 457bbb0..0000000 --- a/esercizio_stack.asm +++ /dev/null @@ -1,17 +0,0 @@ -fill_memory: - push hl - push bc - ld hl, 200h - ld c, 01h - ld a, c -loop_fill: - ld (hl), a - inc hl - inc a - dec b - jr nz, loop_fill - pop bc - pop hl -finish: - halt - end \ No newline at end of file