From 6d7fcf71b1c480c2af5ab55a6a0b3d57af5ba14c Mon Sep 17 00:00:00 2001 From: rnndxb wxcy Date: Thu, 3 Mar 2016 13:21:25 -0500 Subject: [PATCH] Correct typos in listing 3.2 --- src/chapter-03.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/chapter-03.md b/src/chapter-03.md index 4513658..6121388 100644 --- a/src/chapter-03.md +++ b/src/chapter-03.md @@ -913,13 +913,13 @@ and should contain calls to `ZTimerOn` and `ZTimerOff` . ; ; By Michael Abrash ; -mystack segment para stack ‘STACK' +mystack segment para stack 'STACK' db 512 dup(?) mystack ends ; -Code segment para public ‘CODE' +Code segment para public 'CODE' assume cs:Code, ds:Code - extrnZTimerOn:near, ZTimerOff:near, ZTimerReport:near + extrn ZTimerOn:near, ZTimerOff:near, ZTimerReport:near Start proc near push cs pop ds ; set DS to point to the code segment,