Hello, the exercise says to define a group of locations to define months using a standard number of bytes, and to use 8 bit unsigned to set the number of days for each month... i wrote this
DB 'GEN',31D
DB 'FEB',28D
DB 'MAR',31D
DB 'APR',30D
DB 'MAG',31D
DB 'GIU',30D
DB 'LUG',31D
DB 'AGO',31D
DB 'SET',30D
DB 'OTT',31D
DB 'NOV',31D
DB 'DIC',31D
is this correct? how to define the unsigned option?