diff --git a/src/inst.rs b/src/inst.rs
index 11592281e11bf5622793a6bbf81211ecc144c270..e5229b81bf69e60dbda817abd8d20e99453c5200 100644
--- a/src/inst.rs
+++ b/src/inst.rs
@@ -228,7 +228,7 @@ pub const INSTRUCTIONS: [(fn(&mut Cpu), u8, &'static str); 256] = [
     (noimpl, 4, "! UNIMP !"),
     (noimpl, 4, "! UNIMP !"),
     (noimpl, 4, "! UNIMP !"),
-    (noimpl, 4, "! UNIMP !"),
+    (push_de, 16, "PUSH DE"),
     (sub_a_u8, 8, "SUB A, u8"),
     (noimpl, 4, "! UNIMP !"),
     (noimpl, 4, "! UNIMP !"),
@@ -936,6 +936,10 @@ fn rst_08h(cpu: &mut Cpu) {
     rst(cpu, 0x0008);
 }
 
+fn push_de(cpu: &mut Cpu) {
+    cpu.push_word(cpu.de());
+}
+
 fn sub_a_u8(cpu: &mut Cpu) {
     let byte = cpu.read_u8();
     cpu.a = sub_set_flags(cpu, cpu.a, byte);