Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API

From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Yes we know it‘s hard. That‘s why we don‘t use it unless it’s absolutely necessary.
-
@retoor don't laugh darling you know 100% of all C programmers are registered sex offenders.
-
retoor61132d@antigermgerm I know. I try to be one too but after everytime I rape someone, the "victim" says "thank you". Dammit.
-
@retoor you're doing it the wrong way.
You have to strap up. Pretty sure a giant dildo in one's ass will lead to a proper lawsuit unless consented. -
I haven't touched assembly in quite a while, but you might enjoy TIS100 & Shenzen IO
https://store.steampowered.com/app/...
https://store.steampowered.com/app/... -
@antigermgerm I don’t know, man. Surely there are lots of people who would enjoy being ass penetrated by a huge dildo.
There is much weirder and more disturbing shit that people are into. Just look at JS devs. -
@retoor 6502? lmao, he's fucked. I'm an 8086 boi.
Adam! Get yourself a debugger. You're gonna have to single-step-through the entire fucking thing. Print out the stack, print out the regs. Get funky with it.
Related Rants
-
TCPizza28assignment: use winAPI to create a "virus" that put itself in autorun and does nothing. me, a curious student...
-
mcminnra11"Python is such a hard language. It has so many rules" - Undergraduate Student who sent out mass email to the ...
-
domminow21
From today, this beauty is 'ticking' on my desk :D
Hello, any assembly developers here ? It's so hard, even for a simple adder ! I spent half day yesterday to code this :
```6502 assembly
; Header
.setcpu "65C02"
.smart on
.autoimport on
.debuginfo off
.import _printf
.import pushax
.export _main
.segment "RODATA"
msg:
.byte $54,$68,$65,$20,$72,$65,$73,$75,$6C,$74,$20,$69,$73,$3A,$20,$25 ; The result is: %
.byte $64,$0A,$00 ; d
.segment "CODE"
.segment "CODE"
.proc _main: near
lda #32
sta num1
lda #32
sta num2
; Perform the addition
lda num1
clc
adc num2
sta resn
; Print
lda #<(msg)
ldx #>(msg)
jsr pushax
ldx #$00
lda resn
jsr pushax
ldy #$04
jsr _printf
; End of program
rts
.endproc
.segment "BSS"
num1: .res 1 ; Reserve a byte for the first number
num2: .res 1
resn: .res 1
; Build and run:
; cl65 -t sim65c02 -o adder.prg adder.asm
; sim65 adder.prg
; Expected output:
; The result is: 64
```
Emulate it with sim65. Guys it's hard !
rant
assembly
retro
6502