Skip to content

Commit

Permalink
Info text
Browse files Browse the repository at this point in the history
  • Loading branch information
berk76 committed Feb 22, 2018
1 parent bb468bc commit dadc68f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# hlas.com
# Hlas

Original author is unknown
Disassembled by Jaroslav Beran
Hlas is small program in assembly producing voice synthesis using PC speaker.
Original author is unknown. Version 1.0.0 is exact original version and all
later versions contain some modifications and improvements.

## How to compile
Compile using turbo assembler:
Compile hlas.asm using turbo assembler:
```
tasm hlas
tlink hlas /t
Expand All @@ -13,5 +14,5 @@ tlink hlas /t
## How to use
This will say HELLO:
```
hlas.com helou
hlas.com helouu
```
11 changes: 6 additions & 5 deletions hlas.asm
Original file line number Diff line number Diff line change
Expand Up @@ -283,15 +283,16 @@ tbl04 db 000h, 02eh
db 0feh, 000h
db 000h, 000h

txt01 db 74 dup (' ')
db 13,10,13,10,'$'
txt01 db '* HLAS *',13,10
db '(https://github.com/berk76/hlas)',13,10
db 13,10,'$'

;************************
;* Main routine
;************************

n03: ;probably info about program/author but cleared in my binary version
;can somebody provide original text ???
n03: ;info about program
;original author is unknown
mov dx,offset txt01
mov ah,09
int 21h
Expand Down Expand Up @@ -522,7 +523,7 @@ f08:
ret

;*********************************
;* Set countdown of toimer 0
;* Set countdown of timer 0
;*********************************
; 1193180
; COUNTDOWN = ---------
Expand Down

0 comments on commit dadc68f

Please sign in to comment.