I saw a code like below:
section .data
db 'hello'
db 'h', 'e', 'l','l','o'
data_segment_size equ $-$$
Why data_segment_size
is equal to 25? I know what $ and $$ indicate, but I can't figure out why this variable is 25 according to my book. maybe that is a mistake in that book.