REM OX.bbc 0.01 23-May-2005
      REM Show DeckX and DeckO
      :
      INSTALL "CardLib.bbc"
      :
      REM Setup
      PROCcdtInit
      :
      REM Turn off screen update
      PROCcdtRedraw(FALSE)
      :
      REM Draw a card from DeckX
      PROCcdtDraw(@memhdc%,2,2,0,mdDeckX,0)
      :
      REM Draw a card from DeckO
      PROCcdtDraw(@memhdc%,2,4+cdtHeight%,0,mdDeckO,0)
      :
      REM Redraw the screen to display cards
      PROCcdtRedrawArea(0,0,2*cdtWidth%,3*cdtHeight%)
      :
      REM Finish using the DLL
      PROCcdtTerm
      :
      REM Place the cursor beneath the cards
      PRINTTAB(0,14);
      :
      REM Done
      END