Assembly Language is Best Language

preview_player
Показать описание
#atari #atari2600 #atarihomebrew #homebrew #atarian #retrogaming #retrogamer #vintage #tech #programming #retroprogramming #8bit #assembly
Рекомендации по теме
Комментарии
Автор

"If something goes wrong, thats your problem"

I feel that way any time I code in any language

nk-dwhm
Автор

While I will never willing touch assembly, I thank it for existing, because without it, I wouldnt have my JS

Error_-hjjg
Автор

What book do you recommend for assembly language? I have an old 6502 assembly language book I used long ago for my Atari 800. Wondering if there is something else even though the 6507 in the 2600 is the same core as the 6502.

marty
Автор

How to make assembly sound cool lol. With the rock music on top :-)

lunarmodule
Автор

This is on a slideshow presentation in my school's Computer Science class for coding in low level languages such as Assembly

cheeezs
Автор

Modern computers and processors jump backwards through hoops to prevent the level of control assembly language allowed... Because people figured out it shouldn't be easy for a web browser to reformat a hard drive.

chrisbalfour
Автор

you are totally right but there is something I'd like to add, assembly is the best but it takes pages and pages 😂 eventually somebody would have invented a way to pack assembly functions in small words and other people would have liked to use that that's why we got C and the rest is history. Also this modularity reduces abstraction and allows antiviruses to work (quickly without slowing down the computer) as they can recognize patterns or foresee the outcome of an action. Assembly is amazing and naturally safe no real overflows and sockets are safe, unless the programmers create vulnerabilities on purpose. On the other hand today we got corrupt C mantainers which build vulnerabilities on purpose in the system. Even trusted programmers cant make a good job in C. In assembly you can

Jim
Автор

Had no idea whatsoever that Alex Lifeson of Rush was an assembly boss but here we are and yes he's correct

neilpatrickhairless
Автор

Then if i learn machine language it will be more good . Cause i can enter more spacificly, right?

tamimayan
Автор

Is it useful in making websites Android and Ios applications?

TryerTryer-tuje
Автор

assembly sucks idgaf about doing nerdy shit i just wanna make the funny popups

Hiyo
Автор

fopen PROTO
fputs PROTO
ExitProcess PROTO

.data

msg db "Assembly rocks", 0
fhandle dq ?
fname db "assrocks.txt", 0
fmode db "a+", 0


. code

main PROC

sub rsp, 40

mov rcx, offset fname
lea rdx, fmode
call fopen

mov rcx, offset msg
mov rdx, rax
call fputs


add rsp, 40

xor rcx, rcx
call ExitProcess

main ENDP
END

zeeshanparvez
join shbcf.ru