APDU Script v0.4 
=================
Author: 
  weir, e-mail: weir009@sina.com

-------- Introduction ------------------------------------
A Delphi-like script, with simple debug and watch-variant capability. 
My original intend is to write a tool which can commuicate with PCSC 
readers easily, thanks to Carlo Kok's powerful script engine, now it's 
far beyond that. 

Support Win98 & WinNT4 & Win2000 (Win95 may also run, but not tested).

Features:
 - debug: step, breakpoint, watch variants
 - The syntax: almost the same as Delphi, except that pointers are 
   not supported.
 - function / procedure
 - class / record
 - call functions in other unit file ('USES').
 - call DLL
 - create form
 
Note:
 - if no PCSC in your system, associated functions don't take effect.
 - limited by script engine, step can only be applyed in current 
   running script. 
 - some breakpoints may have no effect if it's not at lines recognised
   by script engine.

-------- Legal Issues ------------------------------------
Feel free to distribute the file as long as the file are unmodified and 
integrated.

This software is provided 'as-is', without any expressed or implied
warranty. In no event will the author be held liable for any damages
arising from the use of this software.

-------- File list ------------------------------------
 - A_Script.exe
 - Reame.txt
 - demos/...  demo files

-------- History ------------------------------------
Ver0.4 01/07/15
        - add breakpoint
        
Ver0.35 01/07/13
        - add step over
        - var watch (only types: int, string, bool, real)
        - new Pascal Script 2.67
        
Ver0.3 01/06/25
        - enhance IDE, use MWEdit.
        
Ver0.2 01/06/25
        - replace TScript with Innerfuse Pascal Script 2.60
        - add 'Script Stop'.

Ver0.1 01/06/23
        - integrate TScript(Ver1.6) and TCipher(Ver 3.0)
        - add PCSC and DES functions.


-------- used freeware VCLs ------------------------------------
TCs2PascalScript:
Innerfuse Pascal/Bin Script
Created By Carlo Kok <ck@carlo-kok.com>
http://carlo-kok.com

MWEdit:
"Michael Hieke" <mghie@bigfoot.com>.

TCipher:
 Copyright:      Hagen Reddmann  mailto:HaReddmann@AOL.COM
 Author:         Hagen Reddmann
 Remarks:        freeware, but this Copyright must be included
 known Problems: none
 Version:        3.0,  Part I from Delphi Encryption Compendium  ( DEC Part I)
                 Delphi 2-4, designed and testet under D3 & D4
 Description:    Include a Selection of various Cipher's (Encryption Algo)
                 impl. Algo:
                   Cast128, Cast256, Mars, Misty 1, RC2, RC4, RC5, RC6,
                   FROG, Rijndael, Skipjack, Single DES, Double DES,
                   Triple DES, Double DES 16byte Plain, Triple DES 16,
                   Triple DES 24, DESX, NewDES, Diamond II,
                   Diamond II Lite, Sapphire II

 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
