From 9294891a2345726f19c5accfaf45104c4547f086 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rados=C5=82aw=20Kujawa?= <radoslaw.kujawa@c0ff33.net>
Date: Fri, 27 Jan 2017 20:43:02 +0100
Subject: [PATCH] Remove unused variable.

---
 src/emulation.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/emulation.c b/src/emulation.c
index 77c8221..5a17be3 100644
--- a/src/emulation.c
+++ b/src/emulation.c
@@ -21,11 +21,8 @@ emul_and(rk65c02emu_t *e, void *id, instruction_t *i)
 void
 emul_asl(rk65c02emu_t *e, void *id, instruction_t *i)
 {
-	bool ncarry;
 	uint8_t val;
 
-	ncarry = false;
-
 	val = instruction_data_read_1(e, (instrdef_t *) id, i);
 
 	/* carry flag value equals contents of bit 7 */