-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have some .mov video files recorded from a JVC GC-FM1 HD video camera in 720p mode. I have FFMPEG running on a Linux box that I upload files to and have them encoded into FLV format. The video appears to be encoding ok but there is no audio in the resulting FLV file and when I play it back in Flash…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using a computer with an Intel Core 2 CPU and 2GB of RAM. The SO is Ubuntu 9.04.
When I try to compile this code:
;programma per la simulazione di un terminale su PC, ottenuto utilizzando l'8250
;in condizione di loopback , cioè Tx=Rx
section .code64
section .data
TXDATA EQU 03F8H ;TRASMETTITORE
RXDATA…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have this code on pdp-11
tks = 177560
tkb = 177562
tps = 177564
tpb = 177566
lcs = 177546
. = torg + 2000
main: mov #main, sp
mov #kb_int, @#60
mov #200, @#62
mov #101, @#tks
mov #clock, @#100
mov #300, @#102
mov #100, @#lcs
loop: mov @#tks…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
.model small
.stack 400h
.data
message db "hello. ", 0ah, 0dh, "$"
firstdigit db ?
seconddigit db ?
thirddigit db ?
number dw ?
newnumber db ?
anumber dw 0d
bnumber dw 0d
Firstn db 0ah, 0dh, "Enter first 3 digit number: ","$"
secondn db 0ah, 0dh, "Enter second 3 digit number: ","$"
messageB db…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
.model small
.stack 100
.data
.code
mov ah,00h
mov al,0e3h
mov dx,00h
int 14h
back: nop
l1: mov ah,03h
mov dx,00h
int 14h
and ah,01h
cmp ah,01h
jne l1
mov ah,02h
mov dx,00h
int 21h
mov dl,al
mov ah,02h
int 21h
jmb back
mov ah,4ch
int 21h
end
this a pc to pc…
>>> More