Re: A snapshot of the LuxAsm developments
From: Frank Kotler (fbkotler_at_comcast.net)
Date: 12/20/04
- Next message: Johannes Kroll: "Re: A snapshot of the LuxAsm developments"
- Previous message: Beth: "Re: A snapshot of the LuxAsm developments"
- In reply to: Beth: "Re: A snapshot of the LuxAsm developments"
- Next in thread: wolfgang kern: "Re: A snapshot of the LuxAsm developments"
- Reply: wolfgang kern: "Re: A snapshot of the LuxAsm developments"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 20 Dec 2004 16:08:09 GMT
Beth wrote:
> --------------------------------------------------------
>
> NAME
> ioperm - set port input/output permissions
>
> ...
Funny you should mention it... Inspired by Wilhelm's "cmos" example of
how to use ioperm to get access to ports, I've been trying to "port" a
dos program to beep the speaker. (I found beeping the speaker easy...
had more trouble getting the delay right... still not sure it's "right")
This is absolute crap, in that all the "magic numbers" are hard-coded
in. I *like* to see the raw numbers, until I figure out what's going on.
*Then* I'll "macroize" it... if I can figure out which set of macros to
use :) Maybe one of each...
Best,
Frank
; Plays a tune, of sorts - sound, anyway.
; It is said that I'm not artistic.
;
; nasm -f elf [-g] play.asm
; ld [-s] -o play play.o
;
; to be able to run without being root:
; as root, "chown root:root play" "chmod +s play"
section .text
global _start
_start:
nop ; parking place for gdb
mov eax, 101 ; sys_ioperm
mov ebx, 42h ; starting port
mov ecx, 20h ; how many ports
mov edx, 3 ; read/write
int 80h
test eax, eax
jns okay_ioperm
neg eax
call showeax
mov ebx, eax
jmp exit
okay_ioperm:
; set up PIT
mov al, 10111110b
;.......|------ binary 16-bit counter
;....|||------- square wave generator
;..||---------- r/w bits 0-7, then 8-15
;||------------ select counter 2
out 43h, al
mov esi, melody
playit_sam: ; if she can take it, so can I.
in al, 61h ; enable speaker
or al, 00000011b
;.......|------- enable speaker on timer 2 gate
;......|-------- enable speaker data
out 61h, al
lodsd ; get a note
or eax, eax ; check for zero
jz egress ; coda
out 42h, al ; play it
mov al, ah
out 42h ,al
lodsd ; for this long
call delay
in al, 61h ; Turn Speaker OFF
and al, 11111100b
out 61h, al
lodsd ; for this long
call delay
jmp short playit_sam ; play more
egress:
in al, 61h
and al, 0FCh ; Turn Speaker OFF. Please.
out 61h, al
mov eax, 101 ; sys_ioperm
mov ebx, 42h
mov ecx, 20h
mov edx, 0 ; give back ports
int 80h
test eax, eax
jns okay_exit
neg eax
call showeax
mov ebx, eax
jmp exit
okay_exit:
xor ebx, ebx
exit:
mov eax, 1 ; sys_exit
int 80h
;------------------
;------------------
delay:
push ebx
push ecx
cmp eax, byte 1
jz .no_delay
xor ebx, ebx
.check_ns
cmp eax, 1000000000 ; limit for nanosleep 999999999 ns...
jb .okay_ns
sub eax, 1000000000
inc ebx
jmp short .check_ns
.okay_ns
push eax ; set up a time_spec structure on the stack
push ebx
.take_a_nap
mov eax, 162 ; sys_nanosleep
mov ebx, esp ; same structure for "request"
mov ecx, esp ; and "remaining" - does this work?
int 80h
cmp eax, -4 ; -EINTR
jz .take_a_nap
add esp, byte 8 ; remove time_spec "structure"
.no_delay:
pop ecx
pop ebx
ret
;------------------
;-----------------------------------
; showeax - prints a decimal representation of eax to stdout
; expects - number to print in eax
; returns - nothing
;------------------------------------
showeax:
pushad
xor edi, edi ; counter
mov esi, 10 ; divide by ten
push esi ; double as LF :)
inc edi
.top
xor edx, edx ; zero edx for the divide
div esi ; quotient in eax, remainder in edx
add dl, '0' ; convert number to ascii char
push edx ; save it
inc edi ; bump counter
or eax, eax ; is quotient zero?
jnz .top ; if not, do more
.print
mov eax, 4 ; sys_write
mov ebx, 1 ; stdout
mov ecx, esp ; character's on the stack
mov edx, 1 ; just one
int 80h ; do it
pop edx ; get rid of the character we've printed
dec edi ; decrement counter
jnz .print ; 'til done
popad
ret
;-----------------------
section .data
; Some equates, for your compositional assistance
; It is said that I'm not artistic.
A0 equ 21728
B0 equ 19328
C0 equ 18244
D0 equ 16144
E0 equ 14080
F0 equ 13668
G0 equ 12176
A1 equ 10864
B1 equ 9664
C1 equ 9122
D1 equ 8072
E1 equ 7040
F1 equ 6834
G1 equ 6088
A2 equ 5432
B2 equ 4832
C2 equ 4561
D2 equ 4063
E2 equ 3520
F2 equ 3417
G2 equ 3044
A3 equ 2712
B3 equ 2416
C3 equ 2280
D3 equ 2032
E3 equ 1810
F3 equ 1708
G3 equ 1522
A4 equ 1356
B4 equ 1208
C4 equ 1140
D4 equ 1016
E4 equ 905
F4 equ 854
G4 equ 762
A5 equ 678
B5 equ 604
C5 equ 558
; Some "durations" for sys_nanosleep
Z equ 1
S equ 60000000
Q equ 120000000
P equ 240000000
R equ 480000000
L equ 1920000000
; The opus itself.
;
; It is said that I'm not artistic.
;
; Format is "note", "duration", "pause", "note", ... , 0
; Write your own!
melody:
dd G2, P, Z, E2, Q, Z, G2, Q, Q, G1, Q, Q
dd G1, Q, Q, C2, Q, Q, B2, Q, Z, C2, Q, Z
dd D2, Q, Q, G2, Q, Q, A3, Q, Z, G2, Q, Z
dd A3, Q, Q, A2, Q, Q, A2, Q, Q, G2, Q, Q
dd E2, Q, Z, G2, Q, Z, F2, Q, Z
dd E2, Q, Z, D2, Q, Q, F2, Q, Z, G2, Q, Z
dd A3, Q, Z, G2, Q, Z, F2, Q, Z, E2, Q, Z
dd F2, Q, Z, E2, Q, Z, D2, Q, Z, B2, Q, Z
dd C2, Q, Z, D2, Q, Z, E2, Q, Z, C2, Q, Z
dd D2, Q, Q, G3, Q, Z, F3, Q, Z, E3, Q, Z
dd D3, Q, Z, C3, Q, Z, B3, Q, Z, A3, Q, Z
dd B3, Q, Z, C3, Q, Z, D3, Q, Z, B3, Q, Q
dd G0, Q, Q, G0, R, Z, 0
;-------------------------------------------------
- Next message: Johannes Kroll: "Re: A snapshot of the LuxAsm developments"
- Previous message: Beth: "Re: A snapshot of the LuxAsm developments"
- In reply to: Beth: "Re: A snapshot of the LuxAsm developments"
- Next in thread: wolfgang kern: "Re: A snapshot of the LuxAsm developments"
- Reply: wolfgang kern: "Re: A snapshot of the LuxAsm developments"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|