From 4b4283b025be12623dd95f8540da04bcf0464875 Mon Sep 17 00:00:00 2001 From: Vichingo455 Date: Wed, 26 Mar 2025 10:26:13 +0000 Subject: [PATCH] Delete esercizio_stack.asm --- esercizio_stack.asm | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 esercizio_stack.asm 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