Register - Login
Views: 99403582
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-24-22 06:30:36 PM
Jul - Innocent Town - IT'S SEXYFINE TIME!!! New poll - New thread - New reply
Pages: 1 2 3 Next newer thread | Next older thread
Zero One
5170
And as we fall the spirit carries on,
That a hero'll come and save us all,
As we call the ones we left below,
We all dream of the day we rise above
Level: 129


Posts: 3138/5173
EXP: 24547706
For next: 501948

Since: 05-24-10

From: Delta Quadrant

Since last post: 1.6 years
Last activity: 121 days

Posted on 05-04-11 03:03:52 AM Link | Quote
asm?

____________________
"The last Metroid is in captivity."
And yet, the galaxy is STILL fucked.
Thanks Xkeeper, Bagel and Sanky for the help!

Joe
Common spammer
🍬
Level: 111


Posts: 2037/3392
EXP: 14489687
For next: 378673

Since: 08-02-07

From: Pororoca

Since last post: 3 days
Last activity: 2 hours

Posted on 05-04-11 04:14:15 AM Link | Quote
Originally posted by Zero One
asm?


getcursor:

MOV AH,0x03
XOR BX,BX
INT 0x10
RET

writehex:
MOV CX,4
writehex_loop:
MOV DX,AX
AND AL,0x0F
ADD AL,0x90 ; ***********
DAA ; * HERE BE *
ADC AL,0x40 ; * MAGIC *
DAA ; ***********
MOV AH,0x0E
PUSH AX
MOV AX,DX
ROR AX,4
LOOP writehex_loop
CALL getcursor
MOV BP,SP
XOR BX,BX
MOV ES,BX
MOV AX,0x1303
MOV CX,4
INT 0x10
ADD SP,8
RET



* = $BD68

LDX #$00
LDY $22
DEY
BEQ $BD78
INX
DEY
BEQ $BD78
INX
DEY
BEQ $BD78
INX
BD78: LDY $21
DEY
BNE $BD7F
LDX #$03
BD7F: LDY $20
DEY
BNE $BD91
LDA #$0F
STA $20
LDA #$12
STA $21
LDA #$17
STA $22
INX
BD91: LDA $C62A,X
STA $23
LDA $C62F,X
STA $24
LDA #$80
STA $25



____________________
Zero One
5170
And as we fall the spirit carries on,
That a hero'll come and save us all,
As we call the ones we left below,
We all dream of the day we rise above
Level: 129


Posts: 3145/5173
EXP: 24547706
For next: 501948

Since: 05-24-10

From: Delta Quadrant

Since last post: 1.6 years
Last activity: 121 days

Posted on 05-04-11 11:32:00 AM Link | Quote
Lorom

org $9498B2
DW $B300
org $94B300
LDA $09C4 ;LoaD into the Accumulator Samus' maximum Energy
CMP $09C2 ;CoMPare the value in the Accumulator with Samus' current Energy
BEQ END ;If the 2 values are EQual, Branch to the subroutine called END
LDA $09C6 ;LoaD into the Accumulator the value of Samus' current Missiles
CMP #$0000 ;CoMPare the value in the Accumulator with the value 0
BEQ END ;If the 2 values are EQual, Branch to the subroutine called END
LDA $05D5 ;LoaD into the Accumulator the value at $7E:05D5, which is unused
CMP #$0005 ;CoMPare the value in the Accumulator with the value 5
BEQ HEALTH ;If the values are EQual, branch to the subroutine called HEALTH
INC A ;INCrement the value in the Accumulator by 1
STA $05D5 ;STore the value in the Accumulator into $7E:05D5
LDA $05D7 ;LoaD into the Accumulator the value at $7E:05D7
CMP #$0014 ;CoMPare the value in the Accumulator with the value 0x14 (20)
BEQ MISSILE ;If the values are EQUAL, branch to the subroutine called MISSILE
INC A ;INCrement the value in the Accumulator by 1
STA $05D7 ;STore the value in the Accumulator into $7E:05D7
RTS ;ReTurn from Subroutine
HEALTH:
INC $09C2 ;INCrement Samus' current Energy at $7E:09C2 by 1
STZ $05D5 ;STore Zero into $05D5
RTS ;ReTurn from Subroutine
MISSILES:
DEC $09C6 ;DECrement Samus' current Missiles at $7E:09C6 by 1
STZ $05D7 ;STore Zero into $05D5
RTS ;ReTurn from Subroutine
END:
RTS ;ReTurn from Subroutine

Fully commented too.

____________________
"The last Metroid is in captivity."
And yet, the galaxy is STILL fucked.
Thanks Xkeeper, Bagel and Sanky for the help!

CB

Flippitty Flip
Level: 90


Posts: 1710/2280
EXP: 6971516
For next: 217093

Since: 02-01-11

From: Canadaland

Since last post: 10.5 years
Last activity: 10.3 years

Posted on 05-04-11 07:21:29 PM Link | Quote


cmd

del system32

____________________
Thanks to The Red Snifit for my new avatar!
Nicole

Disk-kun
Level: 146


Posts: 3729/6469
EXP: 38254629
For next: 258665

Since: 07-07-07

Pronouns: she/her
From: Boston, MA

Since last post: 69 days
Last activity: 2 days

Posted on 05-04-11 07:22:41 PM Link | Quote
Originally posted by CB
cmd

del system32

"system8" or "system16" might be more accurate.

____________________
CB

Flippitty Flip
Level: 90


Posts: 1712/2280
EXP: 6971516
For next: 217093

Since: 02-01-11

From: Canadaland

Since last post: 10.5 years
Last activity: 10.3 years

Posted on 05-05-11 12:57:16 AM Link | Quote


Originally posted by Imajin
Originally posted by CB
cmd

del system32

"system8" or "system16" might be more accurate.


Why would it be more accurate?

____________________
Thanks to The Red Snifit for my new avatar!
Nicole

Disk-kun
Level: 146


Posts: 3732/6469
EXP: 38254629
For next: 258665

Since: 07-07-07

Pronouns: she/her
From: Boston, MA

Since last post: 69 days
Last activity: 2 days

Posted on 05-05-11 01:27:00 AM (last edited by Imajin at 05-04-11 10:27 PM) Link | Quote
Originally posted by CB
Why would it be more accurate?

Because system32 implies a 32-bit system whereas the ASM earlier appeared to me to be either 6502 or 65816 (I can't tell the difference, I don't know either), neither of which were 32-bit.

____________________
CB

Flippitty Flip
Level: 90


Posts: 1720/2280
EXP: 6971516
For next: 217093

Since: 02-01-11

From: Canadaland

Since last post: 10.5 years
Last activity: 10.3 years

Posted on 05-05-11 02:40:46 AM Link | Quote


Originally posted by Imajin
Originally posted by CB
Why would it be more accurate?

Because system32 implies a 32-bit system whereas the ASM earlier appeared to me to be either 6502 or 65816 (I can't tell the difference, I don't know either), neither of which were 32-bit.




____________________
Thanks to The Red Snifit for my new avatar!
Rick
M'Lord, there's a knife in your head!
Level: 152


Posts: 4080/7539
EXP: 43671346
For next: 630314

Since: 02-15-10

From: Maine

Since last post: 113 days
Last activity: 45 days

Posted on 05-05-11 02:56:11 AM Link | Quote
Oh fuck, I almost put a bit of ginger ale in my mouth before I read this thread. XD XD

My lappy would've had a ginger ale shower.

____________________
devin

Yoshi
i'm mima irl
Level: 112


Posts: 2031/3519
EXP: 14919510
For next: 418695

Since: 04-29-08

Pronouns: any
From: FL

Since last post: 297 days
Last activity: 2 days

Posted on 05-05-11 05:13:10 AM Link | Quote
Originally posted by Zero One
Fully commented too.

More like overly commented, you don't really have to comment every single instruction man

____________________

Photo by Luc Viatour
Zero One
5170
And as we fall the spirit carries on,
That a hero'll come and save us all,
As we call the ones we left below,
We all dream of the day we rise above
Level: 129


Posts: 3148/5173
EXP: 24547706
For next: 501948

Since: 05-24-10

From: Delta Quadrant

Since last post: 1.6 years
Last activity: 121 days

Posted on 05-05-11 05:27:05 AM Link | Quote
Originally posted by Cool Timpani
Originally posted by Zero One
Fully commented too.

More like overly commented, you don't really have to comment every single instruction man


That's just how I work.

____________________
"The last Metroid is in captivity."
And yet, the galaxy is STILL fucked.
Thanks Xkeeper, Bagel and Sanky for the help!

devin

Yoshi
i'm mima irl
Level: 112


Posts: 2032/3519
EXP: 14919510
For next: 418695

Since: 04-29-08

Pronouns: any
From: FL

Since last post: 297 days
Last activity: 2 days

Posted on 05-05-11 05:33:43 AM Link | Quote
Originally posted by Imajin
to be either 6502 or 65816

It's 65816, check out those 16 bit immediate values


Also a few years ago WDC was making a 32 bit version called the 65T32 but that seems to be vaporware, which sucks because a 32 bit 6502 would have been freakin sweet

____________________

Photo by Luc Viatour
Gabu

Star Mario
Placeholder Ikachan until :effort: is found
Level: 172


Posts: 5995/9981
EXP: 67927055
For next: 175179

Since: 08-10-09

Pronouns: they/them, she/her
From: Santa Cruisin' USA

Since last post: 47 days
Last activity: 8 days

Posted on 05-05-11 01:47:29 PM Link | Quote
This thread went from talking about sexy things to programming codes.

What. :T

____________________
Zero One
5170
And as we fall the spirit carries on,
That a hero'll come and save us all,
As we call the ones we left below,
We all dream of the day we rise above
Level: 129


Posts: 3151/5173
EXP: 24547706
For next: 501948

Since: 05-24-10

From: Delta Quadrant

Since last post: 1.6 years
Last activity: 121 days

Posted on 05-05-11 02:04:46 PM Link | Quote
Originally posted by Gabu
This thread went from talking about sexy things to programming codes.

What. :T


Programming codes are sexy.

____________________
"The last Metroid is in captivity."
And yet, the galaxy is STILL fucked.
Thanks Xkeeper, Bagel and Sanky for the help!

dotUser
From the Grave
Level: 91


Posts: 551/2357
EXP: 7420094
For next: 48818

Since: 10-20-10

Pronouns: she/her
From: a particularly peculiar tiny store's back shelf

Since last post: 25 days
Last activity: 9 days

Posted on 05-05-11 02:34:20 PM Link | Quote
header
Originally posted by Zero One
Originally posted by Gabu
This thread went from talking about sexy things to programming codes.

What. :T


Programming codes are sexy.


Assembly: the real language of love

____________________
Teflon
Member
Level: 60


Posts: 770/874
EXP: 1677027
For next: 95751

Since: 10-12-10


Since last post: 5.3 years
Last activity: 4.2 years

Posted on 05-05-11 03:28:11 PM Link | Quote
quit

____________________
Photobucket
devin

Yoshi
i'm mima irl
Level: 112


Posts: 2036/3519
EXP: 14919510
For next: 418695

Since: 04-29-08

Pronouns: any
From: FL

Since last post: 297 days
Last activity: 2 days

Posted on 05-05-11 03:37:22 PM Link | Quote
I'm decrementing my stack pointer if you know what I'm saying

____________________

Photo by Luc Viatour
Zero One
5170
And as we fall the spirit carries on,
That a hero'll come and save us all,
As we call the ones we left below,
We all dream of the day we rise above
Level: 129


Posts: 3153/5173
EXP: 24547706
For next: 501948

Since: 05-24-10

From: Delta Quadrant

Since last post: 1.6 years
Last activity: 121 days

Posted on 05-05-11 03:38:01 PM Link | Quote
I'm storing my value in the accumulator, if you know what I'm saying.

____________________
"The last Metroid is in captivity."
And yet, the galaxy is STILL fucked.
Thanks Xkeeper, Bagel and Sanky for the help!

devin

Yoshi
i'm mima irl
Level: 112


Posts: 2037/3519
EXP: 14919510
For next: 418695

Since: 04-29-08

Pronouns: any
From: FL

Since last post: 297 days
Last activity: 2 days

Posted on 05-05-11 06:42:56 PM Link | Quote
I'm pushing and popping values into all three registers at once if you get my drift here

____________________

Photo by Luc Viatour
Taryn

Passed away.

Thanks for being a part of us, even if it wasn't always on the best of terms.

1987-2014


Level: 204


Posts: 13425/14742
EXP: 121633669
For next: 1716149

Since: 09-01-09

From: Seattle

Since last post: 10.1 years
Last activity: 9.8 years

Posted on 05-05-11 06:53:02 PM Link | Quote
I'm RTSing out of this thread, into a less sexual part of the ASM code.

____________________
TKB Super Mario Bros.TKB Super Mario Bros., Volume II
Pages: 1 2 3 Next newer thread | Next older thread
Jul - Innocent Town - IT'S SEXYFINE TIME!!! New poll - New thread - New reply


Rusted Logic

Acmlmboard - commit 47be4dc [2021-08-23]
©2000-2022 Acmlm, Xkeeper, Kaito Sinclaire, et al.

33 database queries, 5 query cache hits.
Query execution time:  0.109583 seconds
Script execution time:  0.038920 seconds
Total render time:  0.148503 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 2 column 220 - Warning: unescaped & or unknown entity "&page"
line 119 column 11 - Warning: <form> isn't allowed in <table> elements
line 118 column 10 - Info: <table> previously mentioned
line 120 column 11 - Warning: missing <tr>
line 120 column 119 - Warning: missing </font> before </td>
line 124 column 16 - Warning: plain text isn't allowed in <tr> elements
line 120 column 11 - Info: <tr> previously mentioned
line 125 column 68 - Warning: missing </nobr> before </td>
line 141 column 68 - Warning: missing </nobr> before <tr>
line 147 column 35 - Warning: missing <tr>
line 147 column 50 - Warning: missing </font> before </td>
line 148 column 37 - Warning: unescaped & or unknown entity "&id"
line 147 column 183 - Warning: missing </font> before </table>
line 149 column 35 - Warning: missing <tr>
line 149 column 95 - Warning: unescaped & or unknown entity "&page"
line 149 column 130 - Warning: unescaped & or unknown entity "&page"
line 149 column 50 - Warning: missing </font> before </td>
line 149 column 165 - Warning: missing </font> before </table>
line 156 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 158 column 9 - Warning: missing <tr>
line 176 column 13 - Warning: missing <tr>
line 177 column 102 - Warning: unescaped & or unknown entity "&postid"
line 179 column 492 - Warning: <td> attribute "tahoma"," lacks value
line 179 column 492 - Warning: <td> attribute with missing trailing quote mark
line 179 column 689 - Warning: discarding unexpected <body>
line 179 column 74 - Warning: missing </div>
line 186 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 188 column 9 - Warning: missing <tr>
line 206 column 13 - Warning: missing <tr>
line 207 column 102 - Warning: unescaped & or unknown entity "&postid"
line 209 column 74 - Warning: <style> isn't allowed in <td> elements
line 209 column 9 - Info: <td> previously mentioned
line 273 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 275 column 9 - Warning: missing <tr>
line 293 column 13 - Warning: missing <tr>
line 294 column 102 - Warning: unescaped & or unknown entity "&postid"
line 296 column 492 - Warning: <td> attribute "tahoma"," lacks value
line 296 column 492 - Warning: <td> attribute with missing trailing quote mark
line 296 column 689 - Warning: discarding unexpected <body>
line 296 column 74 - Warning: missing </div>
line 336 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 338 column 9 - Warning: missing <tr>
line 356 column 13 - Warning: missing <tr>
line 357 column 102 - Warning: unescaped & or unknown entity "&postid"
line 359 column 74 - Warning: missing </div>
line 366 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 368 column 9 - Warning: missing <tr>
line 386 column 13 - Warning: missing <tr>
line 387 column 102 - Warning: unescaped & or unknown entity "&postid"
line 395 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 397 column 9 - Warning: missing <tr>
line 415 column 13 - Warning: missing <tr>
line 416 column 102 - Warning: unescaped & or unknown entity "&postid"
line 418 column 74 - Warning: missing </div>
line 428 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 430 column 9 - Warning: missing <tr>
line 448 column 13 - Warning: missing <tr>
line 449 column 102 - Warning: unescaped & or unknown entity "&postid"
line 455 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 457 column 9 - Warning: missing <tr>
line 475 column 13 - Warning: missing <tr>
line 476 column 102 - Warning: unescaped & or unknown entity "&postid"
line 478 column 74 - Warning: missing </div>
line 486 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 488 column 9 - Warning: missing <tr>
line 506 column 13 - Warning: missing <tr>
line 507 column 102 - Warning: unescaped & or unknown entity "&postid"
line 514 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 516 column 9 - Warning: missing <tr>
line 534 column 13 - Warning: missing <tr>
line 535 column 102 - Warning: unescaped & or unknown entity "&postid"
line 537 column 527 - Warning: missing </span> before <blockquote>
line 537 column 607 - Warning: inserting implicit <span>
line 537 column 607 - Warning: missing </span> before <hr>
line 537 column 672 - Warning: inserting implicit <span>
line 537 column 672 - Warning: missing </span> before <hr>
line 538 column 1 - Warning: inserting implicit <span>
line 542 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 544 column 9 - Warning: missing <tr>
line 562 column 13 - Warning: missing <tr>
line 563 column 102 - Warning: unescaped & or unknown entity "&postid"
line 565 column 492 - Warning: <td> attribute "tahoma"," lacks value
line 565 column 492 - Warning: <td> attribute with missing trailing quote mark
line 565 column 689 - Warning: discarding unexpected <body>
line 565 column 74 - Warning: missing </div>
line 575 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 577 column 9 - Warning: missing <tr>
line 595 column 13 - Warning: missing <tr>
line 596 column 102 - Warning: unescaped & or unknown entity "&postid"
line 598 column 527 - Warning: missing </span> before <blockquote>
line 598 column 607 - Warning: inserting implicit <span>
line 598 column 607 - Warning: missing </span> before <hr>
line 598 column 670 - Warning: inserting implicit <span>
line 598 column 670 - Warning: missing </span> before <hr>
line 599 column 1 - Warning: inserting implicit <span>
line 606 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 608 column 9 - Warning: missing <tr>
line 626 column 13 - Warning: missing <tr>
line 627 column 102 - Warning: unescaped & or unknown entity "&postid"
line 629 column 315 - Warning: missing </div>
line 631 column 708 - Warning: discarding unexpected </div>
line 631 column 714 - Warning: discarding unexpected </td>
line 634 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 636 column 9 - Warning: missing <tr>
line 654 column 13 - Warning: missing <tr>
line 655 column 102 - Warning: unescaped & or unknown entity "&postid"
line 657 column 492 - Warning: <td> attribute "tahoma"," lacks value
line 657 column 492 - Warning: <td> attribute with missing trailing quote mark
line 657 column 689 - Warning: discarding unexpected <body>
line 657 column 74 - Warning: missing </div>
line 668 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 670 column 9 - Warning: missing <tr>
line 688 column 13 - Warning: missing <tr>
line 689 column 102 - Warning: unescaped & or unknown entity "&postid"
line 691 column 74 - Warning: <style> isn't allowed in <td> elements
line 691 column 9 - Info: <td> previously mentioned
line 700 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 702 column 9 - Warning: missing <tr>
line 720 column 13 - Warning: missing <tr>
line 721 column 102 - Warning: unescaped & or unknown entity "&postid"
line 723 column 212 - Warning: discarding unexpected </a>
line 726 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 728 column 9 - Warning: missing <tr>
line 746 column 13 - Warning: missing <tr>
line 747 column 102 - Warning: unescaped & or unknown entity "&postid"
line 753 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 755 column 9 - Warning: missing <tr>
line 773 column 13 - Warning: missing <tr>
line 774 column 102 - Warning: unescaped & or unknown entity "&postid"
line 776 column 492 - Warning: <td> attribute "tahoma"," lacks value
line 776 column 492 - Warning: <td> attribute with missing trailing quote mark
line 776 column 689 - Warning: discarding unexpected <body>
line 776 column 74 - Warning: missing </div>
line 783 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 785 column 9 - Warning: missing <tr>
line 803 column 13 - Warning: missing <tr>
line 804 column 102 - Warning: unescaped & or unknown entity "&postid"
line 810 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 812 column 9 - Warning: missing <tr>
line 830 column 13 - Warning: missing <tr>
line 831 column 102 - Warning: unescaped & or unknown entity "&postid"
line 833 column 404 - Warning: missing </div>
line 836 column 17 - Warning: missing <tr>
line 836 column 17 - Warning: discarding unexpected <table>
line 839 column 35 - Warning: missing <tr>
line 839 column 95 - Warning: unescaped & or unknown entity "&page"
line 839 column 130 - Warning: unescaped & or unknown entity "&page"
line 839 column 50 - Warning: missing </font> before </td>
line 839 column 165 - Warning: missing </font> before </table>
line 841 column 35 - Warning: missing <tr>
line 841 column 50 - Warning: missing </font> before </td>
line 842 column 37 - Warning: unescaped & or unknown entity "&id"
line 841 column 183 - Warning: missing </font> before </table>
line 843 column 17 - Warning: discarding unexpected </textarea>
line 843 column 28 - Warning: discarding unexpected </form>
line 843 column 35 - Warning: discarding unexpected </embed>
line 843 column 43 - Warning: discarding unexpected </noembed>
line 843 column 53 - Warning: discarding unexpected </noscript>
line 843 column 64 - Warning: discarding unexpected </noembed>
line 843 column 74 - Warning: discarding unexpected </embed>
line 843 column 82 - Warning: discarding unexpected </table>
line 843 column 90 - Warning: discarding unexpected </table>
line 845 column 9 - Warning: missing </font> before <table>
line 857 column 25 - Warning: discarding unexpected </font>
line 866 column 57 - Warning: discarding unexpected </font>
line 844 column 1 - Warning: missing </center>
line 120 column 63 - Warning: <img> lacks "alt" attribute
line 125 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 125 column 93 - Warning: <img> lacks "alt" attribute
line 141 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 141 column 98 - Warning: <img> lacks "alt" attribute
line 148 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 246 - Warning: <img> proprietary attribute value "absmiddle"
line 160 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 160 column 16 - Warning: <img> lacks "alt" attribute
line 160 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 160 column 59 - Warning: <img> lacks "alt" attribute
line 160 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 160 column 102 - Warning: <img> lacks "alt" attribute
line 160 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 160 column 145 - Warning: <img> lacks "alt" attribute
line 160 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 160 column 188 - Warning: <img> lacks "alt" attribute
line 160 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 160 column 231 - Warning: <img> lacks "alt" attribute
line 161 column 23 - Warning: <img> lacks "alt" attribute
line 161 column 64 - Warning: <img> lacks "alt" attribute
line 161 column 113 - Warning: <img> lacks "alt" attribute
line 161 column 163 - Warning: <img> lacks "alt" attribute
line 162 column 11 - Warning: <img> lacks "alt" attribute
line 172 column 15 - Warning: <img> lacks "alt" attribute
line 182 column 915 - Warning: <img> lacks "alt" attribute
line 191 column 23 - Warning: <img> lacks "alt" attribute
line 191 column 64 - Warning: <img> lacks "alt" attribute
line 191 column 113 - Warning: <img> lacks "alt" attribute
line 191 column 163 - Warning: <img> lacks "alt" attribute
line 192 column 11 - Warning: <img> lacks "alt" attribute
line 202 column 15 - Warning: <img> lacks "alt" attribute
line 277 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 277 column 16 - Warning: <img> lacks "alt" attribute
line 277 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 277 column 59 - Warning: <img> lacks "alt" attribute
line 277 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 277 column 102 - Warning: <img> lacks "alt" attribute
line 277 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 277 column 145 - Warning: <img> lacks "alt" attribute
line 277 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 277 column 188 - Warning: <img> lacks "alt" attribute
line 277 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 277 column 231 - Warning: <img> lacks "alt" attribute
line 278 column 23 - Warning: <img> lacks "alt" attribute
line 278 column 64 - Warning: <img> lacks "alt" attribute
line 278 column 113 - Warning: <img> lacks "alt" attribute
line 278 column 163 - Warning: <img> lacks "alt" attribute
line 279 column 11 - Warning: <img> lacks "alt" attribute
line 289 column 15 - Warning: <img> lacks "alt" attribute
line 332 column 2545 - Warning: <img> lacks "alt" attribute
line 340 column 11 - Warning: <img> lacks "alt" attribute
line 341 column 22 - Warning: <img> lacks "alt" attribute
line 341 column 63 - Warning: <img> lacks "alt" attribute
line 341 column 112 - Warning: <img> lacks "alt" attribute
line 341 column 162 - Warning: <img> lacks "alt" attribute
line 342 column 11 - Warning: <img> lacks "alt" attribute
line 352 column 15 - Warning: <img> lacks "alt" attribute
line 370 column 11 - Warning: <img> lacks "alt" attribute
line 371 column 23 - Warning: <img> lacks "alt" attribute
line 371 column 64 - Warning: <img> lacks "alt" attribute
line 371 column 113 - Warning: <img> lacks "alt" attribute
line 371 column 163 - Warning: <img> lacks "alt" attribute
line 372 column 11 - Warning: <img> lacks "alt" attribute
line 382 column 15 - Warning: <img> lacks "alt" attribute
line 392 column 516 - Warning: <img> proprietary attribute value "absmiddle"
line 392 column 516 - Warning: <img> lacks "alt" attribute
line 399 column 11 - Warning: <img> lacks "alt" attribute
line 400 column 22 - Warning: <img> lacks "alt" attribute
line 400 column 63 - Warning: <img> lacks "alt" attribute
line 400 column 112 - Warning: <img> lacks "alt" attribute
line 400 column 162 - Warning: <img> lacks "alt" attribute
line 401 column 11 - Warning: <img> lacks "alt" attribute
line 411 column 15 - Warning: <img> lacks "alt" attribute
line 423 column 541 - Warning: <img> proprietary attribute value "absmiddle"
line 423 column 541 - Warning: <img> lacks "alt" attribute
line 432 column 11 - Warning: <img> lacks "alt" attribute
line 433 column 23 - Warning: <img> lacks "alt" attribute
line 433 column 64 - Warning: <img> lacks "alt" attribute
line 433 column 113 - Warning: <img> lacks "alt" attribute
line 433 column 163 - Warning: <img> lacks "alt" attribute
line 434 column 11 - Warning: <img> lacks "alt" attribute
line 444 column 15 - Warning: <img> lacks "alt" attribute
line 452 column 716 - Warning: <img> proprietary attribute value "absmiddle"
line 452 column 716 - Warning: <img> lacks "alt" attribute
line 459 column 11 - Warning: <img> lacks "alt" attribute
line 460 column 22 - Warning: <img> lacks "alt" attribute
line 460 column 63 - Warning: <img> lacks "alt" attribute
line 460 column 112 - Warning: <img> lacks "alt" attribute
line 460 column 162 - Warning: <img> lacks "alt" attribute
line 461 column 11 - Warning: <img> lacks "alt" attribute
line 471 column 15 - Warning: <img> lacks "alt" attribute
line 481 column 741 - Warning: <img> proprietary attribute value "absmiddle"
line 481 column 741 - Warning: <img> lacks "alt" attribute
line 483 column 817 - Warning: <img> lacks "alt" attribute
line 491 column 23 - Warning: <img> lacks "alt" attribute
line 491 column 64 - Warning: <img> lacks "alt" attribute
line 491 column 113 - Warning: <img> lacks "alt" attribute
line 491 column 163 - Warning: <img> lacks "alt" attribute
line 492 column 11 - Warning: <img> lacks "alt" attribute
line 502 column 15 - Warning: <img> lacks "alt" attribute
line 511 column 242 - Warning: <img> lacks "alt" attribute
line 518 column 11 - Warning: <img> lacks "alt" attribute
line 519 column 23 - Warning: <img> lacks "alt" attribute
line 519 column 64 - Warning: <img> lacks "alt" attribute
line 519 column 113 - Warning: <img> lacks "alt" attribute
line 519 column 163 - Warning: <img> lacks "alt" attribute
line 520 column 11 - Warning: <img> lacks "alt" attribute
line 530 column 15 - Warning: <img> lacks "alt" attribute
line 538 column 893 - Warning: <img> lacks "alt" attribute
line 546 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 546 column 16 - Warning: <img> lacks "alt" attribute
line 546 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 546 column 59 - Warning: <img> lacks "alt" attribute
line 546 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 546 column 102 - Warning: <img> lacks "alt" attribute
line 546 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 546 column 145 - Warning: <img> lacks "alt" attribute
line 546 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 546 column 188 - Warning: <img> lacks "alt" attribute
line 546 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 546 column 231 - Warning: <img> lacks "alt" attribute
line 547 column 23 - Warning: <img> lacks "alt" attribute
line 547 column 64 - Warning: <img> lacks "alt" attribute
line 547 column 113 - Warning: <img> lacks "alt" attribute
line 547 column 163 - Warning: <img> lacks "alt" attribute
line 548 column 11 - Warning: <img> lacks "alt" attribute
line 558 column 15 - Warning: <img> lacks "alt" attribute
line 571 column 1247 - Warning: <img> lacks "alt" attribute
line 579 column 11 - Warning: <img> lacks "alt" attribute
line 580 column 23 - Warning: <img> lacks "alt" attribute
line 580 column 64 - Warning: <img> lacks "alt" attribute
line 580 column 113 - Warning: <img> lacks "alt" attribute
line 580 column 163 - Warning: <img> lacks "alt" attribute
line 581 column 11 - Warning: <img> lacks "alt" attribute
line 591 column 15 - Warning: <img> lacks "alt" attribute
line 600 column 773 - Warning: <img> lacks "alt" attribute
line 602 column 1115 - Warning: <img> lacks "alt" attribute
line 610 column 11 - Warning: <img> lacks "alt" attribute
line 611 column 23 - Warning: <img> lacks "alt" attribute
line 611 column 64 - Warning: <img> lacks "alt" attribute
line 611 column 113 - Warning: <img> lacks "alt" attribute
line 611 column 163 - Warning: <img> lacks "alt" attribute
line 612 column 11 - Warning: <img> lacks "alt" attribute
line 622 column 15 - Warning: <img> lacks "alt" attribute
line 631 column 571 - Warning: <img> lacks "alt" attribute
line 638 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 638 column 16 - Warning: <img> lacks "alt" attribute
line 638 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 638 column 59 - Warning: <img> lacks "alt" attribute
line 638 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 638 column 102 - Warning: <img> lacks "alt" attribute
line 638 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 638 column 145 - Warning: <img> lacks "alt" attribute
line 638 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 638 column 188 - Warning: <img> lacks "alt" attribute
line 638 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 638 column 231 - Warning: <img> lacks "alt" attribute
line 639 column 23 - Warning: <img> lacks "alt" attribute
line 639 column 64 - Warning: <img> lacks "alt" attribute
line 639 column 113 - Warning: <img> lacks "alt" attribute
line 639 column 163 - Warning: <img> lacks "alt" attribute
line 640 column 11 - Warning: <img> lacks "alt" attribute
line 650 column 15 - Warning: <img> lacks "alt" attribute
line 664 column 1121 - Warning: <img> lacks "alt" attribute
line 673 column 22 - Warning: <img> lacks "alt" attribute
line 673 column 63 - Warning: <img> lacks "alt" attribute
line 673 column 112 - Warning: <img> lacks "alt" attribute
line 673 column 162 - Warning: <img> lacks "alt" attribute
line 674 column 11 - Warning: <img> lacks "alt" attribute
line 684 column 15 - Warning: <img> lacks "alt" attribute
line 705 column 22 - Warning: <img> lacks "alt" attribute
line 705 column 63 - Warning: <img> lacks "alt" attribute
line 705 column 111 - Warning: <img> lacks "alt" attribute
line 705 column 161 - Warning: <img> lacks "alt" attribute
line 706 column 11 - Warning: <img> lacks "alt" attribute
line 716 column 15 - Warning: <img> lacks "alt" attribute
line 730 column 11 - Warning: <img> lacks "alt" attribute
line 731 column 23 - Warning: <img> lacks "alt" attribute
line 731 column 64 - Warning: <img> lacks "alt" attribute
line 731 column 113 - Warning: <img> lacks "alt" attribute
line 731 column 163 - Warning: <img> lacks "alt" attribute
line 732 column 11 - Warning: <img> lacks "alt" attribute
line 742 column 15 - Warning: <img> lacks "alt" attribute
line 749 column 747 - Warning: <img> lacks "alt" attribute
line 757 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 757 column 16 - Warning: <img> lacks "alt" attribute
line 757 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 757 column 59 - Warning: <img> lacks "alt" attribute
line 757 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 757 column 102 - Warning: <img> lacks "alt" attribute
line 757 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 757 column 145 - Warning: <img> lacks "alt" attribute
line 757 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 757 column 188 - Warning: <img> lacks "alt" attribute
line 757 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 757 column 231 - Warning: <img> lacks "alt" attribute
line 758 column 23 - Warning: <img> lacks "alt" attribute
line 758 column 64 - Warning: <img> lacks "alt" attribute
line 758 column 113 - Warning: <img> lacks "alt" attribute
line 758 column 163 - Warning: <img> lacks "alt" attribute
line 759 column 11 - Warning: <img> lacks "alt" attribute
line 769 column 15 - Warning: <img> lacks "alt" attribute
line 779 column 980 - Warning: <img> lacks "alt" attribute
line 787 column 11 - Warning: <img> lacks "alt" attribute
line 788 column 23 - Warning: <img> lacks "alt" attribute
line 788 column 64 - Warning: <img> lacks "alt" attribute
line 788 column 113 - Warning: <img> lacks "alt" attribute
line 788 column 163 - Warning: <img> lacks "alt" attribute
line 789 column 11 - Warning: <img> lacks "alt" attribute
line 799 column 15 - Warning: <img> lacks "alt" attribute
line 806 column 774 - Warning: <img> lacks "alt" attribute
line 815 column 23 - Warning: <img> lacks "alt" attribute
line 815 column 64 - Warning: <img> lacks "alt" attribute
line 815 column 113 - Warning: <img> lacks "alt" attribute
line 815 column 163 - Warning: <img> lacks "alt" attribute
line 816 column 11 - Warning: <img> lacks "alt" attribute
line 826 column 15 - Warning: <img> lacks "alt" attribute
line 833 column 874 - Warning: <img> lacks "alt" attribute
line 842 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 842 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 842 column 246 - Warning: <img> proprietary attribute value "absmiddle"
line 851 column 25 - Warning: <img> lacks "alt" attribute
line 856 column 267 - Warning: <img> lacks "alt" attribute
line 537 column 527 - Warning: trimming empty <span>
line 598 column 527 - Warning: trimming empty <span>
line 836 column 17 - Warning: trimming empty <tr>
line 125 column 68 - Warning: <nobr> is not approved by W3C
line 141 column 68 - Warning: <nobr> is not approved by W3C
line 177 column 27 - Warning: <nobr> is not approved by W3C
line 179 column 172 - Warning: <table> proprietary attribute "height"
line 207 column 27 - Warning: <nobr> is not approved by W3C
line 294 column 27 - Warning: <nobr> is not approved by W3C
line 296 column 172 - Warning: <table> proprietary attribute "height"
line 357 column 27 - Warning: <nobr> is not approved by W3C
line 387 column 27 - Warning: <nobr> is not approved by W3C
line 416 column 27 - Warning: <nobr> is not approved by W3C
line 449 column 27 - Warning: <nobr> is not approved by W3C
line 476 column 27 - Warning: <nobr> is not approved by W3C
line 507 column 27 - Warning: <nobr> is not approved by W3C
line 535 column 27 - Warning: <nobr> is not approved by W3C
line 563 column 27 - Warning: <nobr> is not approved by W3C
line 565 column 172 - Warning: <table> proprietary attribute "height"
line 596 column 27 - Warning: <nobr> is not approved by W3C
line 627 column 27 - Warning: <nobr> is not approved by W3C
line 629 column 74 - Warning: <table> proprietary attribute "height"
line 655 column 27 - Warning: <nobr> is not approved by W3C
line 657 column 172 - Warning: <table> proprietary attribute "height"
line 689 column 27 - Warning: <nobr> is not approved by W3C
line 721 column 27 - Warning: <nobr> is not approved by W3C
line 747 column 27 - Warning: <nobr> is not approved by W3C
line 774 column 27 - Warning: <nobr> is not approved by W3C
line 776 column 172 - Warning: <table> proprietary attribute "height"
line 804 column 27 - Warning: <nobr> is not approved by W3C
line 831 column 27 - Warning: <nobr> is not approved by W3C
line 833 column 74 - Warning: <table> proprietary attribute "height"
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 420 warnings and 0 errors!


The alt attribute should be used to give a short description
of an image; longer descriptions should be given with the
longdesc attribute which takes a URL linked to the description.
These measures are needed for people using non-graphical browsers.

For further advice on how to make your pages accessible
see http://www.w3.org/WAI/GL.
You are recommended to use CSS to specify the font and
properties such as its size and color. This will reduce
the size of HTML files and make them easier to maintain
compared with using <FONT> elements.

You are recommended to use CSS to control line wrapping.
Use "white-space: nowrap" to inhibit wrapping in place
of inserting <NOBR>...</NOBR> into the markup.

About HTML Tidy: https://github.com/htacg/tidy-html5
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
Validate your HTML documents: http://validator.w3.org/nu/
Lobby your company to join the W3C: http://www.w3.org/Consortium

Do you speak a language other than English, or a different variant of
English? Consider helping us to localize HTML Tidy. For details please see
https://github.com/htacg/tidy-html5/blob/master/README/LOCALIZE.md