python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Playing music notes through speaker in TASM assembly
I'm trying to write a program in TASM that plays music notes. I couldn't find any documentation online and the closest thing I found was this stackoverflow question, which is able to produce a "b...
Ariel Yael
Votes: 0
Answers: 1
using function parameters in assembly after pushing registers (pusha saving state)
From what I understand (correct me if I'm mistaken), I can do the following:
push param3
push param2
push param1
call func1
and then inside func1 I can access these params by doing this:
proc func1:
...
Ariel Yael
Votes: 0
Answers: 0
How to convert an ASCII char to a decimal representation?
Hello I need some help with this problem, I need to get an input from the user an ASCII character and print back its decimal value so for example:
Input A --> Output 65
Input B --> Output 66...
Ruschisb
Votes: 0
Answers: 1